shipment12
Results
1
issues of
shipment12
In my CartContoller i have this code public function store(Request $request) { Cart::add($request->id, $request->name, 1, $request->price) ->associate(App\Product); return redirect()->route('cart.index')->with('success_message', 'Item Added to cart successfully'); } and in my Model i...