rbrecruiter/app/Http/Controllers/ProfileController.php
Miguel N c802908bf3 Add "My Profile" Page
This commit adds the layout for the profile page, for users and staff members.
2020-04-30 22:53:57 +01:00

18 lines
220 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ProfileController extends Controller
{
public function index()
{
return view('dashboard.user.profile.userprofile');
}
}