145 lines
5.3 KiB
PHP
145 lines
5.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Support\Carbon;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Http\Request;
|
|
use App\Models\CheckUnit;
|
|
use App\Models\CarUnit;
|
|
use App\Models\User;
|
|
|
|
class CheckUnitController extends Controller
|
|
{
|
|
public function index() {
|
|
$checkUnits = CheckUnit::all();
|
|
return view('tampilan-admin.check-units', compact('checkUnits'));
|
|
}
|
|
|
|
public function show(CheckUnit $checkUnit)
|
|
{
|
|
return view('tampilan-admin.check-units', compact('checkUnit'));
|
|
}
|
|
|
|
public function store(Request $request)
|
|
{
|
|
if (auth()->check()) {
|
|
// Validasi untuk pengguna yang sudah login
|
|
$validatedData = $request->validate([
|
|
'car_id' => 'required',
|
|
'user_id' => 'required',
|
|
'date' => 'required|date',
|
|
'time' => 'required',
|
|
'note' => 'nullable'
|
|
]);
|
|
|
|
$checkUnit = new CheckUnit();
|
|
$checkUnit->car_unit_id = $validatedData['car_id'];
|
|
$checkUnit->user_id = $validatedData['user_id'];
|
|
$checkUnit->date = $validatedData['date'];
|
|
$checkUnit->time = $validatedData['time'];
|
|
$checkUnit->status = 'Menunggu Verifikasi';
|
|
$checkUnit->note = $validatedData['note'];
|
|
$checkUnit->save();
|
|
|
|
return response()->json(['message' => 'Data berhasil disimpan'], 200);
|
|
|
|
} else {
|
|
// Validasi untuk pengguna yang belum login
|
|
$validatedData = $request->validate([
|
|
'car_id' => 'required',
|
|
'name' => 'required|string|max:255',
|
|
'phone' => 'required|string|max:15',
|
|
'date' => 'required|date',
|
|
'time' => 'required',
|
|
'note' => 'nullable',
|
|
'payment_proof' => 'required|file|mimes:png,jpg,jpeg,webp|max:2048',
|
|
'payment' => 'required'
|
|
]);
|
|
|
|
$checkUnit = new CheckUnit();
|
|
$checkUnit->car_unit_id = $validatedData['car_id'];
|
|
$checkUnit->name = $validatedData['name']; // Simpan nama untuk pengguna yang belum login
|
|
$checkUnit->phone = $validatedData['phone']; // Simpan nomor telepon untuk pengguna yang belum login
|
|
$checkUnit->date = $validatedData['date'];
|
|
$checkUnit->time = $validatedData['time'];
|
|
$checkUnit->status = 'Menunggu Verifikasi';
|
|
$checkUnit->note = $validatedData['note'];
|
|
$checkUnit->payment = $validatedData['payment'];
|
|
|
|
if ($request->hasFile('payment_proof')) {
|
|
$paymentProof = $request->file('payment_proof');
|
|
$filename = date('Y-m-d') . $paymentProof->getClientOriginalName();
|
|
$path = 'payment-proof/' . $filename;
|
|
Storage::disk('public')->put($path, file_get_contents($paymentProof));
|
|
$checkUnit->payment_proof = $path;
|
|
}
|
|
$checkUnit->save();
|
|
|
|
return response()->json(['message' => 'Data berhasil disimpan'], 200);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public function checkBooking(Request $request)
|
|
{
|
|
$date = $request->input('date');
|
|
$time = $request->input('time');
|
|
$userId = $request->input('user_id');
|
|
$carId = $request->input('car_id');
|
|
$bookingExists = CheckUnit::where('car_unit_id', $carId)
|
|
->where('user_id', $userId)
|
|
->where('car_unit_id', $carId)
|
|
->where('date', $date)
|
|
->where('time', $time)
|
|
->exists();
|
|
return response()->json(['bookingExists' => $bookingExists]);
|
|
}
|
|
|
|
public function rubahStatusCheckUnit(Request $request)
|
|
{
|
|
try {
|
|
$checkUnitId = $request->input('checkUnitId');
|
|
$status = $request->input('status');
|
|
// $note = $request->input('note');
|
|
|
|
$adminId = Auth::id();
|
|
|
|
$checkUnit = CheckUnit::find($checkUnitId);
|
|
$checkUnit->status = $status;
|
|
$checkUnit->last_edit_by = $adminId;
|
|
|
|
// $checkUnit->note_from_admin = $note;
|
|
|
|
$updatedAt = Carbon::now()->addHours(7);
|
|
$checkUnit->updated_at = $updatedAt;
|
|
|
|
$checkUnit->save();
|
|
|
|
return response()->json(['success' => true, 'message' => 'Status check unit berhasil diubah'], 200);
|
|
} catch (\Exception $e) {
|
|
\Log::error('Error: ' . $e->getMessage());
|
|
return response()->json(['success' => false, 'message' => 'Terjadi kesalahan dalam mengubah status check unit'], 500);
|
|
}
|
|
}
|
|
|
|
public function updateStatus(Request $request, $id)
|
|
{
|
|
$checkUnit = CheckUnit::findOrFail($id);
|
|
$adminId = Auth::id();
|
|
$checkUnit->last_edit_by = $adminId;
|
|
$updatedAt = Carbon::now()->addHours(7);
|
|
$checkUnit->updated_at = $updatedAt;
|
|
$checkUnit->car_status = $request->input('car_status');
|
|
$checkUnit->status = $request->input('status');
|
|
$checkUnit->save();
|
|
$carUnit = CarUnit::findOrFail($checkUnit->car_unit_id);
|
|
$carUnit->status = 'Tersedia';
|
|
$carUnit->save();
|
|
|
|
return response()->json(['message' => 'Status check unit berhasil diperbarui'], 200);
|
|
}
|
|
|
|
}
|