- add broker dashboard controller - make view name RESTful - make the routes under prefix so that in all routes follows same route scheme.
15 lines
258 B
PHP
15 lines
258 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Broker;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
|
|
class BrokerDashboardController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return view ('dashboards.broker.index');
|
|
}
|
|
}
|