Hello, I am trying to show some custom errors on specific place and condition:
$booking = Appointment::query()->where('id', $bookingId)->first();
if (empty($booking)) {
return redirect()->back()->with('error', 'Booking not found.');
}
return redirect()->back()->with('success', 'Booking has been cancelled successfully.');
I can have different keys like error, success, message etc
I am not able to get those in Vue component, any help ?