@extends('admin.layouts.master') @section('title', 'All Pages - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('All Pages') }} @endslot @slot('menu1') {{ __('Pages') }} @endslot @slot('button')
@can('pages.delete') @endcan @can('pages.create') {{ __('Add Page') }} @endcan
@endslot @endcomponent
@if ($errors->any()) @endif
{{ __('All Pages') }}
​ @foreach($page as $key=>$p) ​ @endforeach
# {{ __('Title') }} {{ __('Status') }} {{ __('Action') }}
1 {{ $p->title }}


@endsection @section('script') @endsection