Update Dashboard Layout
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
@extends('[% layout_name %]')
|
||||
|
||||
@section('content')
|
||||
|
||||
@if(Session::has('success_message'))
|
||||
<div class="alert alert-success alert-dismissible" role="alert">
|
||||
{!! session('success_message') !!}
|
||||
|
||||
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="card text-bg-theme">
|
||||
|
||||
<div class="card-header d-flex justify-content-between align-items-center p-3">
|
||||
<h4 class="m-0">[% model_name_plural_title %]</h4>
|
||||
<div>
|
||||
<a href="{{ route('[% create_route_name %]') }}" class="btn btn-secondary" title="[% create_model %]">
|
||||
<span class="fa-solid fa-plus" aria-hidden="true"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@if(count($[% model_name_plural_variable %]) == 0)
|
||||
<div class="card-body text-center">
|
||||
<h4>[% no_models_available %]</h4>
|
||||
</div>
|
||||
@else
|
||||
<div class="card-body p-0">
|
||||
<div class="table-responsive">
|
||||
|
||||
<table class="table table-striped ">
|
||||
<thead>
|
||||
<tr>
|
||||
[% header_cells %]
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($[% model_name_plural_variable %] as $[% model_name_singular_variable %])
|
||||
<tr>
|
||||
[% body_cells %]
|
||||
<td class="text-end">
|
||||
|
||||
<form method="POST" action="{!! route('[% destroy_route_name %]', $[% model_name_singular_variable %]->[% primary_key %]) !!}" accept-charset="UTF-8">
|
||||
<input name="_method" value="DELETE" type="hidden">
|
||||
{{ csrf_field() }}
|
||||
|
||||
<div class="btn-group btn-group-sm" role="group">
|
||||
<a href="{{ route('[% show_route_name %]', $[% model_name_singular_variable %]->[% primary_key %] ) }}" class="btn btn-info" title="[% show_model %]">
|
||||
<span class="fa-solid fa-arrow-up-right-from-square" aria-hidden="true"></span>
|
||||
</a>
|
||||
<a href="{{ route('[% edit_route_name %]', $[% model_name_singular_variable %]->[% primary_key %] ) }}" class="btn btn-primary" title="[% edit_model %]">
|
||||
<span class="fa-regular fa-pen-to-square" aria-hidden="true"></span>
|
||||
</a>
|
||||
|
||||
<button type="submit" class="btn btn-danger" title="[% delete_model %]" onclick="return confirm("[% confirm_delete %]")">
|
||||
<span class="fa-regular fa-trash-can" aria-hidden="true"></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
{!! $[% model_name_plural_variable %]->links('[% pagination_view_name %]') !!}
|
||||
</div>
|
||||
|
||||
@endif
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user