diff --git a/.travis.yml b/.travis.yml index 6f2eab3daaa8..be3076feac75 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,8 @@ language: php sudo: true +dist: xenial + # Prevent tests from taking more than 50 minutes group: deprecated-2017Q4 @@ -12,7 +14,7 @@ php: - 7.4snapshot addons: - chrome: beta + chrome: stable hosts: - www.ninja.test diff --git a/app/Http/Controllers/ClientPortal/DashboardController.php b/app/Http/Controllers/ClientPortal/DashboardController.php new file mode 100644 index 000000000000..ddf7e0a46348 --- /dev/null +++ b/app/Http/Controllers/ClientPortal/DashboardController.php @@ -0,0 +1,91 @@ +middleware('auth:contact'); + } + + /** + * Show the form for creating a new resource. + * + * @return \Illuminate\Http\Response + */ + public function create() + { + // + } + + /** + * Store a newly created resource in storage. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\Response + */ + public function store(Request $request) + { + // + } + + /** + * Display the specified resource. + * + * @param int $id + * @return \Illuminate\Http\Response + */ + public function show($id) + { + // + } + + /** + * Show the form for editing the specified resource. + * + * @param int $id + * @return \Illuminate\Http\Response + */ + public function edit($id) + { + // + } + + /** + * Update the specified resource in storage. + * + * @param \Illuminate\Http\Request $request + * @param int $id + * @return \Illuminate\Http\Response + */ + public function update(Request $request, $id) + { + // + } + + /** + * Remove the specified resource from storage. + * + * @param int $id + * @return \Illuminate\Http\Response + */ + public function destroy($id) + { + // + } +}