-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
66 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
namespace App\Jobs; | ||
|
||
use App\Models\Bill; | ||
use App\Models\User; | ||
use Database\Seeders\DemoUserSeeder; | ||
use Illuminate\Foundation\Queue\Queueable; | ||
use Illuminate\Contracts\Queue\ShouldQueue; | ||
|
||
class RoutineCleanupJob implements ShouldQueue | ||
{ | ||
use Queueable; | ||
|
||
public function __invoke() | ||
{ | ||
// Get all demo user ids | ||
$demoUsers = User::query() | ||
->select('id') | ||
->where('demo', true) | ||
->get() | ||
->pluck('id') | ||
->toArray(); | ||
|
||
// Delete demo user's bills | ||
Bill::query() | ||
->whereIn('user_id', $demoUsers) | ||
->delete(); | ||
|
||
// Run DemoUserSeeder to repopulate data | ||
$seeder = new DemoUserSeeder(); | ||
$seeder->run(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1 @@ | ||
<?php | ||
|
||
use Illuminate\Foundation\Inspiring; | ||
use Illuminate\Support\Facades\Artisan; | ||
|
||
Artisan::command('inspire', function () { | ||
$this->comment(Inspiring::quote()); | ||
})->purpose('Display an inspiring quote')->hourly(); |