1 | <?php |
||
23 | class CatalogController extends Controller |
||
24 | { |
||
25 | /** |
||
26 | * Returns the view for the XHR response with the counts for the facetted search. |
||
27 | * |
||
28 | * @return \Illuminate\Http\Response Response object with output and headers |
||
29 | */ |
||
30 | public function countAction() |
||
37 | |||
38 | |||
39 | /** |
||
40 | * Returns the html for the catalog detail page. |
||
41 | * |
||
42 | * @return \Illuminate\Http\Response Response object with output and headers |
||
43 | */ |
||
44 | public function detailAction() |
||
49 | |||
50 | |||
51 | /** |
||
52 | * Returns the html for the catalog list page. |
||
53 | * |
||
54 | * @return \Illuminate\Http\Response Response object with output and headers |
||
55 | */ |
||
56 | public function listAction() |
||
61 | |||
62 | |||
63 | /** |
||
64 | * Returns the html body part for the catalog stock page. |
||
65 | * |
||
66 | * @return \Illuminate\Http\Response Response object with output and headers |
||
67 | */ |
||
68 | public function stockAction() |
||
75 | |||
76 | |||
77 | /** |
||
78 | * Returns the view for the XHR response with the product information for the search suggestion. |
||
79 | * |
||
80 | * @return \Illuminate\Http\Response Response object with output and headers |
||
81 | */ |
||
82 | public function suggestAction() |
||
89 | |||
90 | |||
91 | /** |
||
92 | * Returns the html for the catalog tree page. |
||
93 | * |
||
94 | * @return \Illuminate\Http\Response Response object with output and headers |
||
95 | */ |
||
96 | public function treeAction() |
||
101 | } |