Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
57ea99f9
Commit
57ea99f9
authored
May 28, 2019
by
Dominik Hebeler
Browse files
removed unnecessary files
parent
6927c3c5
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/Http/Controllers/HomeController.php
deleted
100644 → 0
View file @
6927c3c5
<?php
namespace
App\Http\Controllers
;
use
Illuminate\Http\Request
;
class
HomeController
extends
Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public
function
__construct
()
{
$this
->
middleware
(
'auth'
);
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public
function
index
()
{
return
view
(
'home'
);
}
}
resources/views/home.blade.php
deleted
100644 → 0
View file @
6927c3c5
@
extends
(
'layouts.app'
)
@
section
(
'content'
)
<
div
class
=
"container"
>
<
div
class
=
"row justify-content-center"
>
<
div
class
=
"col-md-8"
>
<
div
class
=
"card"
>
<
div
class
=
"card-header"
>
Dashboard
</
div
>
<
div
class
=
"card-body"
>
@
if
(
session
(
'status'
))
<
div
class
=
"alert alert-success"
role
=
"alert"
>
{{
session
(
'status'
)
}}
</
div
>
@
endif
You
are
logged
in
!
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
@
endsection
routes/web.php
View file @
57ea99f9
...
...
@@ -236,7 +236,3 @@ Route::group(
});
});
});
Auth
::
routes
();
Route
::
get
(
'/home'
,
'HomeController@index'
)
->
name
(
'home'
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment