Work on incomes & expanse

This commit is contained in:
TiclemFR
2024-01-27 10:32:55 +01:00
parent 336f2bae93
commit ce5b9ac0c8
48 changed files with 27832 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace Database\Seeders;
use App\Models\Income;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class IncomeSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
Income::factory()
->count(50)
->create();
}
}