Various fixes
This commit is contained in:
parent
78756ab5f0
commit
b08422c520
|
@ -6,7 +6,7 @@
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("path")
|
@section("path")
|
||||||
<a href="" class="text-white">Opret Kontakt</a> /
|
<a href="{{ route('contacts.create') }}" class="text-white">Opret Kontakt</a> /
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("content")
|
@section("content")
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("path")
|
@section("path")
|
||||||
<a href="" class="text-white">Slet Kontakt</a> /
|
<a href="{{ route('contacts.destroy') }}" class="text-white">Slet Kontakt</a> /
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("content")
|
@section("content")
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("path")
|
@section("path")
|
||||||
<a href="" class="text-white">Vis Kontakter</a> /
|
<a href="{{ route('contacts.index', [ 'contacts' => $contacts ]) }}" class="text-white">Vis Kontakter</a> /
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("content")
|
@section("content")
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("path")
|
@section("path")
|
||||||
<a href="" class="text-white">Slet Kontakt</a> /
|
<a href="{{ route('contacts.destroy') }}" class="text-white">Slet Kontakt</a> /
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("content")
|
@section("content")
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("path")
|
@section("path")
|
||||||
<a href="" class="text-white">Opbevar Kontakt</a> /
|
<a href="{{ route('contacts.store') }}" class="text-white">Opbevar Kontakt</a> /
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("content")
|
@section("content")
|
||||||
|
|
|
@ -67,6 +67,15 @@
|
||||||
{{-- <a href="{{ route('staff.create') }}" class="text-white"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret Personal</a>--}}
|
{{-- <a href="{{ route('staff.create') }}" class="text-white"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret Personal</a>--}}
|
||||||
{{-- </div>--}}
|
{{-- </div>--}}
|
||||||
{{-- </div>--}}
|
{{-- </div>--}}
|
||||||
|
<div class="segment">
|
||||||
|
<h3 class="text-white">Kontakter</h3>
|
||||||
|
<div class="row">
|
||||||
|
<a href="{{ route("contacts.index") }}" class="text-white"><img src="{{ asset('/images/icons/eye.svg') }}" alt="Read">Vis Kontakter</a>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<a href="{{ route('contacts.create') }}" class="text-white"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret Kontakt</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="segment">
|
<div class="segment">
|
||||||
<h3 class="text-white">Feedback</h3>
|
<h3 class="text-white">Feedback</h3>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
|
@ -18,7 +18,7 @@ use Illuminate\Support\Facades\Route;
|
||||||
//});
|
//});
|
||||||
|
|
||||||
Route::get("/", "RootController@index")->name("root.index");
|
Route::get("/", "RootController@index")->name("root.index");
|
||||||
|
Route::get("/home", "RootController@index")->name("root.index");
|
||||||
|
|
||||||
Route::get("/login", "UserController@showLogin")->name("users.show-login");
|
Route::get("/login", "UserController@showLogin")->name("users.show-login");
|
||||||
Route::post("/login", "UserController@login")->name("users.login");
|
Route::post("/login", "UserController@login")->name("users.login");
|
||||||
|
|
Loading…
Reference in New Issue