@extends('layouts.app') @section('title', 'User State 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 State Action
{{$i++}} {{ isset($u_row->getUser) ?$u_row->getUser['first_name']: " " }} @foreach($rows as $list) @if(!$loop->last)
@else
@endif {{ isset($list->getState) ?$list->getState['state_name']: " " }}
@endforeach
@endsection @section('script') @endsection