PHP code example of ymigval / laravel-indexnow

1. Go to this page and download the library: Download ymigval/laravel-indexnow library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ymigval / laravel-indexnow example snippets


IndexNow::keyFile('https://www.example.com/keys/8bbf5df8bbaa457aab35bb3ccbb99aec.txt')
    ->submit('https://www.example.com/cute-cats');

use Ymigval\LaravelIndexnow\Facade\IndexNow;

IndexNow::submit('https://www.example.com/cute-cats');

use Ymigval\LaravelIndexnow\Facade\IndexNow;

IndexNow::submit([
    'https://www.example.com/cute-cats',
    'https://www.example.com/dog-love',
    'https://www.example.com/nature',
]);

// Or using method chaining

IndexNow::setUrl('https://www.example.com/cute-cats')
        ->setUrl('https://www.example.com/dog-love')
        ->setUrl('https://www.example.com/nature')
        ->submit();
bash
php artisan vendor:publish --tag="indexnow"
bash
php artisan indexnow:generate-apikey
bash
php artisan indexnow:apikey
bash
php artisan route:clear
php artisan route:cache
bash
php artisan indexnow:logs