@extends('layouts.app') @section('content')
{{ _lang('Pages') }} @if(has_permission('pages.create')) {{ _lang('Add New') }} @endif
@foreach($pages as $page) @endforeach
{{ _lang('Title') }} {{ _lang('Status') }} {{ _lang('Created') }} {{ _lang('Action') }}
{{ $page->translation->title }} {!! xss_clean(numericStatus($page->status)) !!} {{ $page->created_at }}
@endsection