123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use App\Models\Promotion;
- class TruncateOldItems extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'items:truncate';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Command description';
- /**
- * Execute the console command.
- *
- * @return int
- */
- public function handle()
- {
- Promotion::where('fin', '<', \Carbon\Carbon::now())->each(function ($item) {
- $item->delete();
- });
- }
- }
|