@extends('admin.layouts.app') @push('title') Pages @endpush @push('banner') @endpush @section('content') @include('admin.layouts.include.message')

Pages

{{--
--}}
@if ($pages->isNotEmpty()) @foreach ($pages as $page) @endforeach
# Title Type Status Action
{{ $loop->iteration }} {{ $page->title }} {{ $page->type }} @if ($page->status == 1) Active @else Inactive @endif
@else @endif
@endsection @section('customJs') @endsection