first commit
This commit is contained in:
57
database/seeds/BillStatuses.php
Normal file
57
database/seeds/BillStatuses.php
Normal file
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeds;
|
||||
|
||||
use App\Models\Model;
|
||||
use App\Models\Expense\BillStatus;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class BillStatuses extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
Model::unguard();
|
||||
|
||||
$this->create();
|
||||
|
||||
Model::reguard();
|
||||
}
|
||||
|
||||
private function create()
|
||||
{
|
||||
$company_id = $this->command->argument('company');
|
||||
|
||||
$rows = [
|
||||
[
|
||||
'company_id' => $company_id,
|
||||
'name' => trans('bills.status.new'),
|
||||
'code' => 'new',
|
||||
],
|
||||
[
|
||||
'company_id' => $company_id,
|
||||
'name' => trans('bills.status.updated'),
|
||||
'code' => 'updated',
|
||||
],
|
||||
[
|
||||
'company_id' => $company_id,
|
||||
'name' => trans('bills.status.partial'),
|
||||
'code' => 'partial',
|
||||
],
|
||||
[
|
||||
'company_id' => $company_id,
|
||||
'name' => trans('bills.status.paid'),
|
||||
'code' => 'paid',
|
||||
],
|
||||
];
|
||||
|
||||
foreach ($rows as $row) {
|
||||
BillStatus::create($row);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user