@extends('backend.layouts.main') @section('content')

{{$subtitle}}

{{ Breadcrumbs::render('backend.location.district.index') }}
@if(auth()->guard('backend')->user()->can('district.add')) @endif
@include('backend.partials.msg')
@forelse($districts as $key => $district) @empty @endforelse
# ID Tên Tỉnh/TP Ngày tạo Ngày cập nhật Hành động
{{++$start}} {{$district->id}} {{$district->name}} {{$district->province->name}} {{$district->created_at}} {{$district->updated_at}} @if(auth()->guard('backend')->user()->can('district.edit')) Sửa @endif @if(auth()->guard('backend')->user()->can('district.del')) Xóa @endif
-
{{ $districts->links() }}
@endsection @section('style_top') @stop @section('script') @stop