2020-02-07 16:54:25 +03:00

24 lines
332 B
Plaintext

<?php
namespace $NAMESPACE$;
use App\Abstracts\Model;
use Illuminate\Database\Seeder;
class $NAME$ extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Model::unguard();
// $this->call("OthersTableSeeder");
Model::reguard();
}
}