@extends('admin.layout.app')
@section('content')
ID |
Title |
Slug |
Banner Image |
Status |
Actions |
@php $i=1; @endphp
@foreach($pages as $page)
{{ $i++ }} |
{{ $page->title }} |
{{ $page->slug }} |
|
@if($page->status == "0")
Inactive |
@elseif($page->status == "1")
Active |
@endif
|
@endforeach
@endsection
@section('script')
@endsection