@extends('backend.layouts.app') @section('title') Danh sách trang @endsection @section('content')
@include('backend.layouts.content-header', ['page' => 'Danh sách trang'])
@include('backend.components.notification') @can('add_pages') @includeIf('backend.components.button.add', ['route' => route('pages.add')]) @endcan
@foreach($data as $page) @endforeach
Tiêu đề Ngày tạo Trạng thái Hoạt động
{{ $page->title }} {{ $page->created_at }} status == 1 ? 'checked' : '' }} /> @can('edit_pages') @include('backend.components.button.edit', ['route' => route('pages.edit', $page->id)]) @endcan @can('delete_pages') @include('backend.components.button.delete', ['route' => route('pages.delete'), 'id' => $page->id]) @endcan

{{ $data->links() }}
@endsection @push('css') @endpush @push('js') @endpush