@extends('backend.layouts.master') @section('title') Clients @endsection @section('main-content') @include('backend.layouts.notification')
Clients
@if(count($clients)>0) @foreach($clients as $client) @endforeach
ID Name Country Logo Status Action
{{$client->id}} {{$client->name}} {{$client->country}} @if($client->photo) {{ Storage::url($client->photo) }} @else avatar.png @endif @if($client->status=='active') {{$client->status}} @else {{$client->status}} @endif
@csrf @method('delete')
@else
No clients found!!! Please add client
@endif
@endsection