Files
productalert/resources/views/front/country_all.blade.php
Charles T 500714d7bf Update (config): enable canonical
Update (migration): Add category type
Add (admin): Add post cliffhanger
2023-08-03 19:46:32 +08:00

40 lines
1.1 KiB
PHP

@extends('layouts.front.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