@extends('layout.admin_layout')
@section('title', 'admin-dashboard')
@section('body')
@section('header', 'CMS Pages')
@section('badge')
CMS Pages
@endsection
| No |
Page Name |
Title |
Action |
@forelse ($pages as $page)
|
|
{{ $page->page_name }} |
{{ $page->title }} |
@if($page->page_name=='FAQ')
Edit
FAQ List
@elseif($page->page_name=='Contact Us')
Edit
Contact Us
@elseif($page->page_name=='Contact Info')
Edit
Contact Info
@else
Edit
@endif
|
@empty
| No data found. |
@endforelse
@endsection
@push('scripts')
@endpush