@@ -14,21 +14,21 @@ |
||
14 | 14 | { |
15 | 15 | use HasFactory; |
16 | 16 | |
17 | - protected $dates = ["created_at","updated_at"]; |
|
17 | + protected $dates = ["created_at", "updated_at"]; |
|
18 | 18 | |
19 | - public function items(){ |
|
19 | + public function items() { |
|
20 | 20 | return $this->hasMany(ProductItem::class); |
21 | 21 | } |
22 | 22 | |
23 | - public function category(){ |
|
23 | + public function category() { |
|
24 | 24 | return $this->belongsTo(Category::class); |
25 | 25 | } |
26 | 26 | |
27 | - public function details(){ |
|
28 | - return $this->hasManyThrough(ProductItemDetail::class,ProductItem::class); |
|
27 | + public function details() { |
|
28 | + return $this->hasManyThrough(ProductItemDetail::class, ProductItem::class); |
|
29 | 29 | } |
30 | 30 | |
31 | - public static function getPrice($product_item_id){ |
|
31 | + public static function getPrice($product_item_id) { |
|
32 | 32 | return ProductItem::find($product_item_id)->price; |
33 | 33 | } |
34 | 34 |
@@ -7,16 +7,16 @@ |
||
7 | 7 | |
8 | 8 | class ShopSingleProductController extends Controller |
9 | 9 | { |
10 | - public function page($id,$product_item_id = null){ |
|
10 | + public function page($id, $product_item_id = null) { |
|
11 | 11 | $product = Product::find($id); |
12 | - if($product_item_id == null){ |
|
13 | - return redirect()->route('shop.single.product',[$product->id,$product->items->first()->id]); |
|
12 | + if ($product_item_id == null) { |
|
13 | + return redirect()->route('shop.single.product', [$product->id, $product->items->first()->id]); |
|
14 | 14 | } |
15 | 15 | |
16 | - $details_fields = Template::getDetailsFields($product,$product_item_id); |
|
16 | + $details_fields = Template::getDetailsFields($product, $product_item_id); |
|
17 | 17 | $configuration_fields = Template::getConfigurationFields($product_item_id); |
18 | 18 | $btn_cart = Template::buttonCart($product_item_id); |
19 | 19 | $price = Product::getPrice($product_item_id); |
20 | - return view('mongicommerce.pages.single-product',compact('product','details_fields','configuration_fields','btn_cart','price')); |
|
20 | + return view('mongicommerce.pages.single-product', compact('product', 'details_fields', 'configuration_fields', 'btn_cart', 'price')); |
|
21 | 21 | } |
22 | 22 | } |