
   Error 

  Class "App\Models\S3DownloadRequest" not found

  at app/Console/Commands/CleanupCompletedZips.php:18
     14▕     public function handle()
     15▕     {
     16▕         $minutes = config('exports.cleanup_after_minutes', 35);
     17▕ 
  ➜  18▕         S3DownloadRequest::where('status', 'completed')
     19▕             ->where('updated_at', '<', now()->subMinutes($minutes))
     20▕             ->chunk(100, function ($requests) {
     21▕                 foreach ($requests as $request) {
     22▕                    if ($request->zip_path && Storage::disk('local')->exists($request->zip_path)) {

      [2m+13 vendor frames [22m
  14  artisan:35
      Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
