Add (routes): All routes possible
Add (pages): home country page
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<div class="row justify-content-center text-center">
|
||||
<div class="col-12 col-lg-8 py-5">
|
||||
<h2 class="h3 fw-bold">ProductAlert is the place to be for top rated product reviews with recommendation such
|
||||
as the right price, latest trend, from the best brands.</h2>
|
||||
as the right price, latest trend, from the best brands in {{ get_country_name_by_iso($country_locale->country_iso) }}.</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -15,7 +15,7 @@
|
||||
<div class="row g-3 justify-content-center">
|
||||
@for ($i = 1; $i <= 3; $i++)
|
||||
<div class="col-12 col-xl-3">
|
||||
<a href="#" class="text-decoration-none">
|
||||
<a href="{{ route('home.country.post', ['country' => $country_locale->country_iso, 'post' => str_random() ]) }}" class="text-decoration-none">
|
||||
<div class="card shadow-sm">
|
||||
<img src="https://placekitten.com/400/300" alt="" class="card-img-top">
|
||||
<div class="card-body">
|
||||
@@ -38,11 +38,11 @@
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col col-lg-9">
|
||||
<h3 class="h4 fw-bold text-center mb-3">What's New</h3>
|
||||
<h3 class="h4 fw-bold text-center mb-3">What's New in {{ get_country_name_by_iso($country_locale->country_iso) }}</h3>
|
||||
<div class="row g-3">
|
||||
@for ($i = 1; $i <= 12; $i++)
|
||||
<div class="col-6">
|
||||
<a href="#" class="text-decoration-none">
|
||||
<a href="{{ route('home.country.post', ['country' => $country_locale->country_iso, 'post' => str_random() ]) }}" class="text-decoration-none">
|
||||
<div class="card">
|
||||
<div class="row g-0">
|
||||
<div class="col-md-4">
|
||||
@@ -67,7 +67,7 @@
|
||||
|
||||
</div>
|
||||
<div class="text-center py-3">
|
||||
<a href="#" class="btn btn-primary">All News & Updates</a>
|
||||
<a href="{{ route('home.country.posts', ['country' => $country_locale->country_iso ]) }}" class="btn btn-primary">All News & Updates</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user