added class option to company seed

This commit is contained in:
denisdulici
2020-02-07 12:44:26 +03:00
parent ee33a211d8
commit 0f5bcfc5b2
6 changed files with 61 additions and 145 deletions

View File

@ -0,0 +1,24 @@
<?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);
}
}