snipe-it/database/seeds/DepreciationSeeder.php

13 lines
235 B
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
use Illuminate\Database\Seeder;
use App\Models\Depreciation;
class DepreciationSeeder extends Seeder
{
public function run()
{
Depreciation::truncate();
factory(Depreciation::class, 5)->create();
}
2016-03-25 01:18:05 -07:00
}