@extends('layouts.app') @section('content')

{{ __('Clients') }}

@if (count($clients) > 0) @foreach ($clients as $client) @endforeach
{{ __('Name') }} {{ __('Phone') }} {{ __('Actions') }}
{{ $client-> name }} {{ $client-> phone }} {{ __('Edit') }}
@csrf @method('DELETE')
{{ $clients->appends(Request::all())->links() }}
@else

{{ __('No Clients found.') }}

@endif
@endsection