Work in progress, initial dashboard

This commit is contained in:
Deon George
2018-06-05 21:13:57 +10:00
parent feda44db8a
commit c6342abdc2
31 changed files with 17024 additions and 385 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Http\Controllers;
use Auth;
class UserServicesController extends Controller
{
public function __construct()
{
//$this->middleware('auth');
}
public function services()
{
return ['data'=>Auth::user()->services_active->values()];
}
}