@extends('admin.layouts.adminmaster') @section('title', 'All Client') @section('content')
@foreach($clients as $key => $client) @endforeach
# Reference Client Name Mobile Post Code Current Card Action
{{ $key+1 }} {{ $client->reference }} {{ $client->forename }} {{ $client->phone }} {{ $client->postcode }} {{ $client->card->first()->number ?? null }}
@endsection @section('specificscripts') @stop