snipe-it/database/seeds/DepreciationSeeder.php
2016-03-25 01:18:05 -07:00

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();
}
}