Agregando el backend de lumen

This commit is contained in:
2021-04-20 17:06:51 -04:00
parent cf875c8fdc
commit 99dd982041
43 changed files with 8416 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
// $this->call('UsersTableSeeder');
}
}