12 lines
234 B
PHP
12 lines
234 B
PHP
<?php
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\Depreciation;
|
|
|
|
class DepreciationSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Depreciation::truncate();
|
|
factory(Depreciation::class, 'depreciation')->create();
|
|
}
|
|
}
|