Files
aibuddytool/resources/views/front/country_all.blade.php
2023-11-26 18:56:40 +08:00

40 lines
1.1 KiB
PHP

@extends('front.layouts.app')
@section('content')
<div class="container py-3">
<div class="row justify-content-center">
<div class="col-12 col-lg-11 col-xl-9 col-xxl-8">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-8 col-xl-8">
<div class="mb-5">
<h1 class="h2 fw-bold">All {{ $country_locale->name }} News</h1>
<p class="text-secondary">
The latest {{ $country_locale->name }} news, brought to you by {{ config('app.name') }}
</p>
</div>
@foreach ($latest_posts as $post)
<div class="my-3">
@include('front.partials.post_list_card', ['post' => $post])
</div>
@endforeach
{{ $latest_posts->links() }}
</div>
</div>
</div>
</div>
@endsection