@extends('frontend.layouts.app') @section('title') {{ __($module_title) }} @endsection @section('content') {{ __($module_title) }} The list of {{ __($module_name) }}. @include('frontend.includes.messages') @foreach ($pages_data as $page_singular) @php $detail_url = route("frontend.$module_name.show",[encode_id($page_singular->id), $page_singular->slug]); @endphp {{$page_singular->description}} @endforeach @lang('Recent Pages') {{__('Recently published pages')}} @foreach ($recent_data as $row) @php $detail_url = route("frontend.pages.show",[encode_id($row->id), $row->slug]); @endphp @if($row->featured_image != "") @else @endif {{ $row->name }} {{$row->created_at}} @endforeach {{$pages_data->links()}} @endsection
The list of {{ __($module_name) }}.
{{$page_singular->description}}
{{__('Recently published pages')}}