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

Content List

{{ csrf_field() }}
{{ Form::select('status',config('constants.status'),\session()->get('content.status'), ['class' => 'form-control'])}}
@if(count($pages)>=1) @php if(isset($_GET['page'])){ $i=($limit*$_GET['page'])-$limit; } else{ $i=0; } @endphp @foreach($pages as $page) @endforeach @else @endif
S.No. #id Slug Title Status Created Action
{{++$i}} {{$page->id}} {{$page->slug}} {{$page->title}} @if($page->status==1)
Active
@else
Deactive
@endif
{{$page['created_at']}} @if($page->status==1) @else @endif View Edit Delete
No Data Found here
{{ $pages->links() }}
@endsection