First auth tests around profile

This commit is contained in:
PovilasKorop
2021-10-31 18:48:55 +02:00
commit 583796d502
129 changed files with 239714 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
}