@include('layouts.header')
@include('layouts.sidebar')

User

@if (session('success')) @endif @if (session('delete')) @endif

User Table

@php $no = '1'; @endphp @foreach ($showUser_datas as $showUser) @php $no++; @endphp @endforeach
No. Name Email Type Location Date Action
{{ $no }} {{ $showUser->name }} {{ $showUser->email }} {{ $showUser->type }} @if ($showUser->level == 'Default') {{ $showUser->level }} @else @foreach ($branchs as $branch) @if ($showUser->level == $branch->id) {{ $branch->name }} @endif @endforeach @endif {{ $showUser->created_at }}
@include('layouts.footer')