| 1 | <?php namespace Bedard\Shop\Api; |
||
| 9 | class Products extends ApiController |
||
| 10 | { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Find a single product. |
||
| 14 | * |
||
| 15 | * @param \Bedard\Shop\Repositories\ProductRepository $repository |
||
| 16 | * @param string $slug |
||
| 17 | * @return \Bedard\Shop\Models\Product |
||
| 18 | */ |
||
| 19 | public function show(ProductRepository $repository, $slug) |
||
| 33 | } |
||
| 34 |