@extends('admin.layout') @section('custom-style') @endsection @section('content') Footer Pages Footer Pages All All Footer Pages @if(check_Permission('Pages', 'create')) Add New Footer Page @endif @if(\Session::has('delete')) {!! \Session::get('delete') !!} @endif @if(\Session::has('success')) {!! \Session::get('success') !!} @endif Title Slug Created on Action @if(isset($pages)) @foreach($pages as $page) {{$page->title}} {{ $page->slug }} {{ $page->created_at->format('d M, Y')}} @if(check_Permission('Pages', 'edit')) @endif @if(check_Permission('Pages', 'view')) @endif @if(check_Permission('Pages', 'delete')) @endif @endforeach @endif @endsection @section('custom-scripts') @endsection