mirror of
https://github.com/supanadit/short-url.git
synced 2024-11-10 10:02:20 +00:00
17 lines
245 B
PHP
Executable File
17 lines
245 B
PHP
Executable File
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
factory(App\User::class)->create();
|
|
}
|
|
}
|