MIF_E31220412/resources/views/admin/ongkir-kota/index.blade.php

68 lines
3.3 KiB
PHP

@extends('layouts.app')
@section('title', 'Kelola Ongkir Kota - INUFA')
@section('header', 'Kelola Ongkir Kota')
@section('content')
<div class="container mx-auto px-4 py-6">
<div class="mb-6">
<a href="{{ route('admin.ongkir-kota.create') }}" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
<i class="fas fa-plus mr-2"></i>Tambah Kota
</a>
</div>
<div class="bg-white rounded-lg shadow overflow-hidden">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Nama Kota
</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Biaya Ongkir
</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Status
</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Aksi
</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@foreach($kotas as $kota)
<tr>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">
{{ $kota->nama_kota }}
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">
Rp {{ number_format($kota->biaya_ongkir, 0, ',', '.') }}
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full {{ $kota->status ? 'bg-green-100 text-green-800' : 'bg-red-100 text-red-800' }}">
{{ $kota->status ? 'Aktif' : 'Nonaktif' }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<a href="{{ route('admin.ongkir-kota.edit', $kota->id) }}" class="text-indigo-600 hover:text-indigo-900 mr-3">
<i class="fas fa-edit"></i> Edit
</a>
<form action="{{ route('admin.ongkir-kota.destroy', $kota->id) }}" method="POST" class="inline-block">
@csrf
@method('DELETE')
<button type="submit" class="text-red-600 hover:text-red-900" onclick="return confirm('Apakah Anda yakin ingin menghapus data ini?')">
<i class="fas fa-trash"></i> Hapus
</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@endsection