mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
13 lines
234 B
PHP
13 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();
|
||
|
}
|
||
|
}
|