@extends('layouts.layout') @section('title', 'CMS') @section('content')

Content Management System

@if(Session::has('message')) @endif @canany(['edit_cms', 'delete_cms']) @endcanany @if(count($cms)>0) @foreach($cms as $key=>$item) @canany(['edit_cms', 'delete_cms']) @endcanany @endforeach @else @endif
# Page Name StatusAction
{{$key+1}} {{$item->page_name}} @if($item->status=='0') Inactive @endif @if($item->status=='1') Active @endif @can('edit_cms')@endcan @include('shared._actions', [ 'entity' => 'cms', 'id' => $item->id ])

No records found!

Click here to add a new record.
@endsection