@extends('admin.layouts.master') @section('title', 'Pages') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
{{ __('All Pages') }}
@can('pages.delete') @endcan @can('pages.create') {{ __('Add Page') }} @endcan
​ @foreach($page as $key=>$p) ​ @endforeach
# {{ __('Title') }} {{ __('Status') }} {{ __('Action') }}
1 {{ $p->title }}


@endsection @section('script') @endsection