@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100'])
@section('content')
@include('layouts.navbars.auth.topnav', ['title' => 'Employees'])
Add Client
|
Clinte |
Country |
Status |
Phone |
Employed |
Project |
|
@foreach($clients as $client)
{{$client->name}}
{{$client->email}}
|
{{$client->country}}
{{$client->address}}
|
{{$client->status}}
|
{{$client->phn}}
|
{{ $client->created_at }}
|
{{$client->project}}
|
View
Edit
Delet
|
@endforeach
@include('layouts.footers.auth.footer')
{{ $clients->links() }}
@endsection