first upload all files
This commit is contained in:
20
Modules/Category/Http/Controllers/CategoryController.php
Normal file
20
Modules/Category/Http/Controllers/CategoryController.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Category\Http\Controllers;
|
||||
|
||||
use Modules\Category\Entities\Category;
|
||||
|
||||
class CategoryController
|
||||
{
|
||||
/**
|
||||
* Display a listing of the resource.
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
return view('public.categories.index', [
|
||||
'categories' => Category::all()->nest(),
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user