PHP code example of robertseghedi / laravel-autofetcher

1. Go to this page and download the library: Download robertseghedi/laravel-autofetcher 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/ */

    

robertseghedi / laravel-autofetcher example snippets


 // your providers

RobertSeghedi\Autofetcher\AutofetcherProvider::class, 
 

use RobertSeghedi\Autofetcher\Models\Autofetch;
  

public function fetch_table($table = null)
{
    $x = Autofetch::database($table);
    return $x;
}

public function fetch_top_donators($table = null)
{
    $x = Autofetch::top($table, 'donated_money', 10, 1800, 'public');
    return $x;
}
config/app.php