akaunting/database/seeds/Company.php
2020-02-07 12:44:26 +03:00

25 lines
486 B
PHP

<?php
namespace Database\Seeds;
use Illuminate\Database\Seeder;
class Company extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(Accounts::class);
$this->call(Categories::class);
$this->call(Currencies::class);
$this->call(EmailTemplates::class);
$this->call(Modules::class);
$this->call(Reports::class);
$this->call(Settings::class);
}
}