Useful Links in Topbar
This commit is contained in:
parent
b26ebb3150
commit
f923eef868
8 changed files with 94 additions and 4 deletions
|
@ -48,7 +48,14 @@ class UsefulLinkController extends Controller
|
|||
'description' => 'required|string|max:2000',
|
||||
]);
|
||||
|
||||
UsefulLink::create($request->all());
|
||||
|
||||
UsefulLink::create([
|
||||
'icon' => $request->icon,
|
||||
'title' => $request->title,
|
||||
'link' => $request->link,
|
||||
'description' => $request->description,
|
||||
'navbar' => $request->navbar,
|
||||
]);
|
||||
|
||||
return redirect()->route('admin.usefullinks.index')->with('success', __('link has been created!'));
|
||||
}
|
||||
|
@ -93,7 +100,13 @@ class UsefulLinkController extends Controller
|
|||
'description' => 'required|string|max:2000',
|
||||
]);
|
||||
|
||||
$usefullink->update($request->all());
|
||||
$usefullink->update([
|
||||
'icon' => $request->icon,
|
||||
'title' => $request->title,
|
||||
'link' => $request->link,
|
||||
'description' => $request->description,
|
||||
'navbar' => $request->navbar,
|
||||
]);
|
||||
|
||||
return redirect()->route('admin.usefullinks.index')->with('success', __('link has been updated!'));
|
||||
}
|
||||
|
|
|
@ -16,5 +16,6 @@ class UsefulLink extends Model
|
|||
'title',
|
||||
'link',
|
||||
'description',
|
||||
'navbar',
|
||||
];
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
namespace App\Providers;
|
||||
|
||||
use App\Models\Settings;
|
||||
use App\Models\UsefulLink;
|
||||
use Exception;
|
||||
use Illuminate\Pagination\Paginator;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
@ -53,6 +54,12 @@ class AppServiceProvider extends ServiceProvider
|
|||
return $ok;
|
||||
});
|
||||
|
||||
|
||||
if (Schema::hasColumn('useful_links', 'navbar')) {
|
||||
$useful_links = UsefulLink::where("navbar", "true")->get();
|
||||
view()->share('useful_links', $useful_links);
|
||||
}
|
||||
|
||||
//only run if the installer has been executed
|
||||
try {
|
||||
$settings = Settings::all();
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('useful_links', function (Blueprint $table) {
|
||||
$table->string('navbar')->after("description")->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('useful_links', function (Blueprint $table) {
|
||||
$table->dropColumn('navbar');
|
||||
});
|
||||
}
|
||||
};
|
|
@ -94,6 +94,21 @@
|
|||
@enderror
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="col m-0 p-0 d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<input value="true" id="navbar" name="navbar"
|
||||
type="checkbox">
|
||||
<label for="navbar">{{ __('Show link on top Navbar') }} </label>
|
||||
</div>
|
||||
</div>
|
||||
@error('navbar')
|
||||
<div class="text-danger">
|
||||
{{$message}}
|
||||
</div>
|
||||
@enderror
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group text-right">
|
||||
<button type="submit" class="btn btn-primary">
|
||||
|
|
|
@ -95,6 +95,21 @@
|
|||
@enderror
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="col m-0 p-0 d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<input value="true" id="navbar" name="navbar"
|
||||
type="checkbox" @if($link->navbar == "true") checked @endif
|
||||
<label for="navbar">{{ __('Show link on top Navbar') }} </label>
|
||||
</div>
|
||||
</div>
|
||||
@error('navbar')
|
||||
<div class="text-danger">
|
||||
{{$message}}
|
||||
</div>
|
||||
@enderror
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group text-right">
|
||||
<button type="submit" class="btn btn-primary">
|
||||
|
|
|
@ -41,6 +41,7 @@
|
|||
<th width="50">{{__('Icon')}}</th>
|
||||
<th>{{__('Title')}}</th>
|
||||
<th>{{__('Link')}}</th>
|
||||
<th>{{__('Navbar')}}</th>
|
||||
<th>{{__('Created at')}}</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
|
@ -79,6 +80,7 @@
|
|||
{data: 'icon'},
|
||||
{data: 'title'},
|
||||
{data: 'link'},
|
||||
{data: 'navbar'},
|
||||
{data: 'created_at'},
|
||||
{data: 'actions', sortable: false},
|
||||
],
|
||||
|
|
|
@ -22,8 +22,6 @@
|
|||
{{-- summernote --}}
|
||||
<link rel="stylesheet" href="{{ asset('plugins/summernote/summernote-bs4.min.css') }}">
|
||||
|
||||
|
||||
|
||||
{{-- datetimepicker --}}
|
||||
<link rel="stylesheet"
|
||||
href="{{ asset('plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css') }}">
|
||||
|
@ -62,6 +60,13 @@
|
|||
class="fab fa-discord mr-2"></i>{{ __('Discord') }}</a>
|
||||
</li>
|
||||
@endif
|
||||
|
||||
@foreach($useful_links as $link)
|
||||
<li class="nav-item d-none d-sm-inline-block">
|
||||
<a href="{{ $link->link }}" class="nav-link" target="__blank"><i
|
||||
class="{{$link->icon}}"></i> {{ $link->title }}</a>
|
||||
</li>
|
||||
@endforeach
|
||||
<!-- Language Selection -->
|
||||
@if (config('SETTINGS::LOCALE:CLIENTS_CAN_CHANGE') == 'true')
|
||||
<li class="nav-item dropdown">
|
||||
|
|
Loading…
Reference in a new issue