@extends('core::layouts.app') @section('title', __('Pages Website')) @section('content')

@lang('Pages Website')

@lang('Create')
@include('core::partials.admin-sidebar')
@lang('All the page links will be displayed in the footer menu of the website home page')
@if($data->count() > 0)
@foreach($data as $item) @endforeach
@lang('Title') @lang('Active') @lang('Date Created') @lang('Date Modified') @lang('Action')
{{ $item->title }} @if($item->is_active) @lang('Active') @else @lang('Not Active') @endif
{{$item->created_at->format('M j, Y')}}
{{$item->updated_at->format('M j, Y')}}
@csrf @method('DELETE')
@endif
{{ $data->appends( Request::all() )->links() }}
@if($data->count() == 0)
@lang('No page found')
@endif
@stop