#21 filing scaffolding

This commit is contained in:
Nabeel Shahzad 2017-08-04 10:04:00 -05:00
parent 7e2b888409
commit 021083f58e
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?php
namespace App\Http\Controllers\Frontend;
use Illuminate\Support\Facades\Auth;
use App\Http\Controllers\AppBaseController;
class PirepController extends AppBaseController
{
/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return $this->view('pireps.index', [
'user' => Auth::user(),
]);
}
}