@if ($listMode)
| # |
Name |
Phone |
Email |
@foreach ($clerks as $key => $item)
@php
$plant = App\Models\People::where('user_id', $item->id)
->with('plants')
->first();
$locations = App\Models\People::where('user_id', $item->id)
->with('locations')
->get();
@endphp
| {{ $key + 1 }} |
{{ $item->name }} |
{{ $item->phone }} |
{{ $item->email }} |
@endforeach
@elseif($createMode)
@elseif($updateMode)
@endif