added class option to company seed
This commit is contained in:
24
database/seeds/Company.php
Normal file
24
database/seeds/Company.php
Normal 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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user