Postări

Se afișează postări din decembrie, 2022

Scheduled tasks in Laravel

  Add scheduled tasks in Laravel: Add in App\Console\Kernel.php:   protected function schedule ( Schedule $schedule )     {         // $schedule->command('inspire')->hourly();                 $schedule -> call ( 'App\Http\Controllers\SchedjobController@runSchedjobs' )-> everyFiveMinutes ();             } Check task list in CLI: php artisan schedule:list

Customizing The Paginator URI in Laravel

  Customizing The Paginator URI The  setPath  method allows you to customize the URI used by the paginator when generating links. Exemple: paginate ( 5 )-> setPath ( '/monitor/viewlog?id=' . $id ); (add "id=$id" to the URI)