@extends('layouts.app') @section('title', 'User Client Mapping') @section('content')
@forelse($tble_list as $u_row) @php $rows = $all_list->where('user_id',$u_row->user_id); $row_cnt = count($rows); @endphp @empty @endforelse
Sl No User Client Action
{{$i++}} {{ isset($u_row->getUser) ?$u_row->getUser['first_name'].' '.$u_row->getUser['last_name']: " " }} @foreach($rows as $list) @if(!$loop->last)
@else
@endif {{ isset($list->getClient) ?$list->getClient['client_name']: " " }}
@endforeach
@endsection @section('script') @endsection