mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
21 lines
481 B
PHP
21 lines
481 B
PHP
<?php
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(UsersTableSeeder::class);
|
|
$this->call(CurrenciesTableSeeder::class);
|
|
$this->call(RoleSeeder::class);
|
|
$this->call(CountriesTableSeeder::class);
|
|
$this->call(EstimateTemplateSeeder::class);
|
|
$this->call(InvoiceTemplateSeeder::class);
|
|
}
|
|
}
|