@extends('layouts.app') @section('content')
{{ isset($title) ? $title : 'อำเภอ' }}{{ $amphur->name_th }}
{{ csrf_field() }}
รหัสจังหวัด
: {{ optional($amphur->province)->name }}
ชื่ออำเภอ
: {{ $amphur->name_th }}
เจ้าหน้าที่ผู้ดูแลอำเภอ{{ $amphur->name_th }}
@if(count($users) == 0)

ไม่พบข้อมูล ผู้ใช้งานระบบ

@else
@foreach($users as $user) @endforeach
ลำดับที่ ภาพโปรไฟล์ ชื่อ-สกุล เบอร์โทร E-mail Username สิทธิ์
{{++$r}} {{ $user->name }} {{ $user->tel }} {{ $user->email }} {{ $user->username }} {{ $_permission[$user->permission] }}
{{ csrf_field() }}
@endif
@endsection