Add profile model, migration and controller

Also added User model observer to create a profile when a new user is
created.
This commit is contained in:
Daniel Supernault 2018-04-15 18:52:22 -06:00
parent 2855c83c50
commit 9dd58c5abd
6 changed files with 93 additions and 1 deletions

View file

@ -0,0 +1,10 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ProfileController extends Controller
{
//
}