Inform Google Search Indexing API about your Job Posting URLs.
- PHP 7.2+
- Laravel 5.6+
Install the package by running this command in your terminal/cmd:
composer require noud/laravel-seo-google-indexing-api
Add these settings to your .env
.
GOOGLE_SERVICE_ENABLED=true
GOOGLE_SERVICE_ACCOUNT_JSON_LOCATION="/var/www/seo/config/google/google-service-account.json"
Here is a usage example:
<?php
namespace App\Http\Controllers;
use App\Models\JobPosting;
use GoogleIndexing\Services\IndexingService;
class GoogleIndexingController extends Controller
{
private $indexingService;
public function __construct(IndexingService $indexingService)
{
$this->indexingService = $indexingService;
}
public function updateURL(JobPosting $jobPosting)
{
$this->indexingService->update($jobPosting->url);
}
public function removeURL(JobPosting $jobPosting)
{
$this->indexingService->remove($jobPosting->url);
}
public function statusURL(JobPosting $jobPosting)
{
$this->indexingService->status($jobPosting->url);
}
}