Commit 52064a13 by Angel MAS

send category to view

parent 75593d2c
...@@ -48,6 +48,11 @@ php artisan serve ...@@ -48,6 +48,11 @@ php artisan serve
```php ```php
http://localhost:8000/admin/product/product http://localhost:8000/admin/product/product
``` ```
- add .env vars
```php
SLUG_PRODUCTS=productos
SLUG_PRODUCTS_CATEGORY=categorias
```
- test in this route - test in this route
......
...@@ -67,6 +67,7 @@ class ProductController extends Controller ...@@ -67,6 +67,7 @@ class ProductController extends Controller
return view('product-public::category') return view('product-public::category')
->with('categories', $categories) ->with('categories', $categories)
->with('otros', $otros) ->with('otros', $otros)
->with('category', $category)
->with('products', $products); ->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