1
0
forked from metin2/web

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

@ -2,7 +2,7 @@
namespace App\Providers;
use App\View\Composers\ShopComposer;
use App\View\Composers\MallComposer;
use Illuminate\Support\Facades;
use Illuminate\Support\ServiceProvider;
@ -21,6 +21,6 @@ class ViewServiceProvider extends ServiceProvider
*/
public function boot(): void
{
Facades\View::composer('layouts.shop', ShopComposer::class);
Facades\View::composer('layouts.mall', MallComposer::class);
}
}