restore composer.json, add mysqli extension
This commit is contained in:
105
resources/views/dashboard/cities/index.blade.php
Executable file
105
resources/views/dashboard/cities/index.blade.php
Executable file
@@ -0,0 +1,105 @@
|
||||
@extends('dashboard.layouts.app')
|
||||
@section('title', trans('admin.cities.title') . ' - ')
|
||||
@section('speedbar')
|
||||
<div class="content-header row">
|
||||
<div class="content-header-left col-md-9 col-12 mb-2">
|
||||
<div class="row breadcrumbs-top">
|
||||
<div class="col-12">
|
||||
<h2 class="content-header-title float-left mb-0">@lang('admin.cities.title')</h2>
|
||||
<div class="breadcrumb-wrapper col-12">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item "><a href="{{ route('dashboard') }}">@lang('admin.home')</a>
|
||||
</li>
|
||||
<li class="breadcrumb-item active">
|
||||
@lang('admin.cities.title')
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<div class="row" id="table-head">
|
||||
@can('store', 'cities')
|
||||
<div class="col-md-12 mb-1">
|
||||
<a href="{{ route('dashboard.city.store') }}" class="btn btn-icon btn-success float-right">
|
||||
<i class="feather icon-plus"></i> @lang('admin.add')
|
||||
</a>
|
||||
</div>
|
||||
@endcan
|
||||
<div class="col-12">
|
||||
|
||||
<div class="card">
|
||||
|
||||
<div class="card-content">
|
||||
<div class="table-responsive">
|
||||
<table class="table mb-0">
|
||||
<thead class="thead-dark">
|
||||
<tr>
|
||||
<th scope="col" width="50">ID</th>
|
||||
<th scope="col">@lang('admin.cities.name')</th>
|
||||
<th scope="col" width="50">@lang('admin.regions.name')</th>
|
||||
<th scope="col" class="text-right">@lang('admin.actions')</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@if (count($cities) == 0)
|
||||
<tr>
|
||||
<td class="text-center" colspan="4">
|
||||
@lang('admin.no_data')
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
@foreach ($cities as $city)
|
||||
<tr>
|
||||
<th scope="row">{{ $city->id }}</th>
|
||||
<td>{{ $city->getName() }}</td>
|
||||
<td>{{ $city->region->getName() }}</td>
|
||||
<td class="text-right">
|
||||
@can('update', 'cities')
|
||||
<a href="{{ route('dashboard.city.update', $city->id) }}"
|
||||
class="btn btn-sm btn-success btn-icon" data-toggle="tooltip"
|
||||
data-original-title="@lang('admin.edit')">
|
||||
<i class="feather icon-edit"></i>
|
||||
</a>
|
||||
@endcan
|
||||
|
||||
@can('delete', 'cities')
|
||||
<a href="{{ route('dashboard.city.delete', $city->id) }}"
|
||||
class="btn btn-sm btn-danger btn-icon delete-btn" data-toggle="tooltip"
|
||||
data-original-title="@lang('admin.delete')">
|
||||
<i class="feather icon-trash"></i>
|
||||
</a>
|
||||
@endcan
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ $cities->links('pagination::bootstrap-4') }}
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
<!-- Add this JavaScript to handle the delete confirmation -->
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const deleteButtons = document.querySelectorAll('.delete-btn');
|
||||
|
||||
deleteButtons.forEach(button => {
|
||||
button.addEventListener('click', function(event) {
|
||||
event.preventDefault(); // Prevent default link action
|
||||
const confirmation = confirm("Are you sure you want to delete this city?");
|
||||
|
||||
if (confirmation) {
|
||||
window.location.href = this.href; // Redirect to delete route if confirmed
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user