65 lines
1.6 KiB
PHP
65 lines
1.6 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers;
|
||
|
|
||
|
use App\Models\Product;
|
||
|
use App\Models\User;
|
||
|
use Exception;
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Support\Facades\Auth;
|
||
|
use Illuminate\Support\Facades\Log;
|
||
|
|
||
|
class CartController extends Controller
|
||
|
{
|
||
|
/**
|
||
|
* Display the specified resource.
|
||
|
*
|
||
|
* @param \App\Models\Product $product
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function show()
|
||
|
{
|
||
|
throw new Exception("UNIMPLEMENTED");
|
||
|
//return view("product/view", ["product" => $product]);
|
||
|
}
|
||
|
|
||
|
public function addToCart(Product $product) {
|
||
|
$user = Auth::user();
|
||
|
$user->cart()->syncWithoutDetaching([$product->uuid]);
|
||
|
|
||
|
return back();
|
||
|
}
|
||
|
|
||
|
public function removeFromCart(Product $product) {
|
||
|
$user = Auth::user();
|
||
|
$user->cart()->detach($product);
|
||
|
return back();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Update the specified resource in storage.
|
||
|
*
|
||
|
* @param \Illuminate\Http\Request $request
|
||
|
* @param \App\Models\Product $product
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function update(Request $request, Product $product)
|
||
|
{
|
||
|
$product->fill($request->all());
|
||
|
$product->save();
|
||
|
return redirect()->route("product.show", [ 'product' => $product])->with("message", "Product created successfully");
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Remove the specified resource from storage.
|
||
|
*
|
||
|
* @param \App\Models\Product $product
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function destroy(Product $product)
|
||
|
{
|
||
|
$product->delete();
|
||
|
return redirect()->route("product.index");
|
||
|
}
|
||
|
}
|