11 _ go to app/console/Kernel.php
22 _ do everything that you want in schedule like this :
3
4protected function schedule(Schedule $schedule)
5 {
6 $schedule->call(function () {
7 DB::table('recent_users')->delete();
8 })->daily();
9 }
1Cache::put('key', 'value', $seconds);
2Cache::rememberForever('users', function () {
3 return DB::table('users')->get();
4});
5Cache::get('key');
6Cache::has('key');
7Cache::pull('key');