web.php:
Код: Выделить всё
Route::post('new-order-form', [OrderController::class, 'showNewOrderForm'])->name('new.order.form');
Код: Выделить всё
public function showNewOrderForm()
{
$products = SanPham::all();
$employees = Employee::all();
return view('order.new_order_form', compact('products', 'employees'));
}
/order/order.blade.php:
Код: Выделить всё
$(document).ready(function(){
// Hiển thị form tạo đơn hàng mới khi click
$("#newOrderBox").click(function(){
window.location.href = "{{ route('new.order.form') }}";
});
});
Подробнее здесь: https://stackoverflow.com/questions/784 ... ethods-pos