WIP: started implementing shop, multi-language
This commit is contained in:
24
app/View/Composers/ShopComposer.php
Normal file
24
app/View/Composers/ShopComposer.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\View\Composers;
|
||||
|
||||
use App\Models\Shop\ShopCategory;
|
||||
use Illuminate\View\View;
|
||||
|
||||
class ShopComposer
|
||||
{
|
||||
/**
|
||||
* Bind data to the view.
|
||||
*/
|
||||
public function compose(View $view): void
|
||||
{
|
||||
// Fetch the amount of items in storage
|
||||
$view->with('storageCount', 10);
|
||||
|
||||
// Fetch the amount of items in storage
|
||||
$view->with('discountDesc', "20% reducere la chipsuri");
|
||||
|
||||
// Fetch the shop categories
|
||||
$view->with('categories', ShopCategory::all());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user