Update (indexing): enable google

Update (country view): change column
This commit is contained in:
2023-08-15 14:41:02 +08:00
parent 678fe3a1ec
commit ae11f4556e
2 changed files with 2 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ public function indexing(Request $request, $post_id)
$post_url = route('home.country.post', ['country' => $post->post_category?->category?->country_locale_slug, 'post_slug' => $post->slug]); $post_url = route('home.country.post', ['country' => $post->post_category?->category?->country_locale_slug, 'post_slug' => $post->slug]);
//LaravelGoogleIndexing::create()->update($post_url); LaravelGoogleIndexing::create()->update($post_url);
IndexNow::submit($post_url); IndexNow::submit($post_url);
return redirect()->back()->with('success', 'Signalled, Bing, Yahoo and Yandex for Indexing.'); return redirect()->back()->with('success', 'Signalled, Bing, Yahoo and Yandex for Indexing.');

View File

@@ -17,7 +17,7 @@
<h3 class="h4 fw-bold text-center mb-3">Featured Articles</h3> <h3 class="h4 fw-bold text-center mb-3">Featured Articles</h3>
<div class="row g-3 justify-content-center"> <div class="row g-3 justify-content-center">
@foreach ($featured_posts as $post) @foreach ($featured_posts as $post)
<div class="col-9 col-md-6 col-xl-3"> <div class="col-10 col-md-8 col-xl-3">
@include('front.partials.featured_post_card', ['post' => $post]) @include('front.partials.featured_post_card', ['post' => $post])