@extends('layouts.app', ['title' => __('List Clients')]) @section('content') @include('users.partials.header', [ 'title' => __('Hello') . ' '. auth()->user()->name, 'description' => __('This is your profile page. You can see the progress you\'ve made with your work and manage your projects or assigned tasks'), 'class' => 'col-lg-7' ])

{{ __('List Clients') }}

@if (session('msg')) @endif
@foreach($clients as $client) @method('delete') @csrf @endforeach
{{__('Name Arabic')}} {{__('Name English')}} {{__('Delete')}} {{__('Edit')}}
{{$client->head_ar}} {{$client->head_en}}
@include('layouts.footers.auth')
@endsection