@extends('back.layouts.app') @push('title', __('Pages')) @push('css') @endpush @section('content')
{{ __('Pages') }} {{ __('Add New Page') }}
@foreach($pages as $page) @endforeach
#ID {{ __('Name') }} {{ __('Description') }} {{ __('Seo URL') }} {{ __('Updated At') }} {{ __('Action') }}
{{ $page->id }} {{ $page->name }} {{ $page->description }} {{ route('page',['slug' => $page->slug]) }} {{ $page->updated_at }}
@csrf
@endsection @push('js') @endpush