@extends($_layout.'main') {{-- khai báo title --}} @section('title', 'Danh sách Module Phân quyền') {{-- tên modul xuất hiện trong sub header --}} @section('module.name', $title = 'Module') {{-- Nhúng link css --}} @section('css') {{-- --}} @endsection @section('content')

{{$title}}

    {{--
  • --}}
@include($_template.'list-filter',[ 'sortable'=> $columns, 'searchable' => $columns ])
@if (isset($results) && count($results))
@foreach ($results as $item) @endforeach
Tên Loại Tham chiếu Mô tả Thao tác
{{$item->name}} {{ $item->type }} {{ $item->path }} {{ $item->description }} {{-- --}} {{-- --}} {{-- --}}
{{-- nút phân trang --}}
{{-- --}}
{{$results->links($_pagination.'default')}}
@else
Danh sách trống
@endif
@endsection {{-- thiết lập biến cho js để sử dụng --}} @section('jsinit') @endsection {{-- Nhúng js --}} @section('js') @endsection