@extends('layouts.app') @section('title', 'User State Mapping') @section('content')
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
|