@php $title = 'Clients' @endphp @section('title') {{$title}} @endsection @extends('layout') @section('main-content')

{{$title}}

@foreach($clients as $client) @endforeach
Sl.No Name Phone Number Email Address City Actions
{{$loop->iteration}} {{$client->name}} {{$client->phone}} {{$client->email}} {{$client->address}} {{$client->city}} {{-- Edit
@csrf @method('DELETE')
--}}
@endsection