@extends('layouts.backend.app') @section('head') @include('layouts.backend.partials.headersection',['title'=>'Pages List']) @endsection @section('content')
@foreach($all_pages as $row) @if($row->status == 1) @endif @if($row->status == 0) @endif @endforeach
{{ __('Title') }} {{ __('Url') }} {{ __('Status') }} {{ __('Created At') }} {{ __('Action') }}
{{ $row->title }} {{ url('/page',$row->slug) }}{{ __('Active') }}{{ __('Inactive') }}{{ date('d-m-Y', strtotime($row->created_at)) }}
{{ $all_pages->links('vendor.pagination.bootstrap-4') }}
@endsection @push('js') @endpush