Shop improvements, renamed "shop" to "mall", support for Argon2ID

This commit is contained in:
2024-06-02 22:09:52 +03:00
parent 83f4f72b6e
commit 63d0d2ac79
1932 changed files with 729 additions and 514 deletions

View File

@ -0,0 +1,19 @@
<?php
namespace App\Http\Controllers\Mall;
use App\Http\Controllers\Controller;
use App\Models\Mall\MallCategory;
use Illuminate\View\View;
class CategoryController extends Controller
{
public function show(int $id): View
{
$category = MallCategory::find($id);
return view('mall/category', [
'category' => $category
]);
}
}