New-OMIS/stubs/nwidart-stubs/seeder.stub

17 lines
215 B
Plaintext
Raw Normal View History

2024-04-04 10:35:27 +00:00
<?php
namespace $NAMESPACE$;
use Illuminate\Database\Seeder;
class $NAME$ extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
// $this->call([]);
}
}