@extends('layouts.admin_layout') @section('content')

Manage Site Page Names

@if(Session::has('success'))

×{{ Session::get('success') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Page Name Lists

Add
@php $i=1;@endphp @foreach($sitePages as $page) @endforeach
# Page Name Status Action
{{$i++}} {{$page->page_name}} @if($page->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection