Commit 52064a13 by Angel MAS

send category to view

parent 75593d2c
......@@ -48,6 +48,11 @@ php artisan serve
```php
http://localhost:8000/admin/product/product
```
- add .env vars
```php
SLUG_PRODUCTS=productos
SLUG_PRODUCTS_CATEGORY=categorias
```
- test in this route
......
......@@ -67,6 +67,7 @@ class ProductController extends Controller
return view('product-public::category')
->with('categories', $categories)
->with('otros', $otros)
->with('category', $category)
->with('products', $products);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment