StocksNew/stubs/nwidart-stubs/seeder.stub

17 lines
215 B
Plaintext
Raw Normal View History

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