@extends('layouts/layoutMaster') @section('title', 'Tables - Basic Tables') @section('content')
Lead /
List
New Lead
@foreach($list as $key => $item) @endforeach
No
Address
Contact
Status
{{$key + 1}}
{{$item->address->unit_number ? $item->address->unit_number."/" : ""}}{{$item->address->street}}, {{$item->address->city}}
@foreach($item->contact() as $contact)
{{$contact->first_name}} {{$contact->last_name}}
@endforeach
{{$item->status}}
Edit
Delete
@csrf @method('DELETE')
@endsection