You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
460 B

4 years ago
4 years ago
  1. <?php
  2. use App\Models\Business;
  3. use Illuminate\Support\Facades\DB;
  4. use Illuminate\Support\Facades\Artisan;
  5. Artisan::command('business:reset', function () {
  6. Business::first()->update([
  7. 'wallet' => 10000,
  8. 'calculated_at' => now()->subMonth(2),
  9. ]);
  10. $this->call('cache:clear');
  11. DB::statement('TRUNCATE TABLE `costs` ');
  12. DB::statement('TRUNCATE TABLE `notifications`');
  13. })->purpose('Reset the businesses after test cost:work');