@extends('layouts.admin') @section('content') @if (session('success'))
@endif
Static Content List
@if(count($pages)>=1) @php $j=1; if(isset($_GET['page'])){ $i=($limit*$_GET['page'])-$limit; } else{ $i=0; } @endphp @foreach($pages as $user) @php $j++; @endphp @endforeach @endif
Sr.No Slug Title Created Status Action
{{$j}} {{ucwords($user->slug)}} {{ucwords($user->title)}} Dec-31-1969 @if($user->status==1) Enable @else @endif
@endsection