Initial repository

This commit is contained in:
PovilasKorop
2021-12-05 12:57:24 +02:00
commit 0a20e3dee6
84 changed files with 11195 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
// \App\Models\User::factory(10)->create();
}
}