36 lines
947 B
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace App\Http\ViewComposers;
use App\Traits\Modules as RemoteModules;
use Cache;
use Date;
use Illuminate\View\View;
class Modules
{
use RemoteModules;
/**
* Bind data to the view.
*
* @param View $view
* @return void
*/
public function compose(View $view)
{
2019-11-16 10:21:14 +03:00
if (setting('apps.api_key')) {
2018-12-19 15:36:40 +03:00
$categories = Cache::remember('modules.categories.' . language()->getShortCode(), Date::now()->addHour(6), function () {
return collect($this->getCategoriesOfModules())->pluck('name', 'slug')
->prepend(trans('general.all_type', ['type' => trans_choice('general.categories', 2)]), '*');
2017-09-14 22:21:00 +03:00
});
2017-11-02 02:00:54 +03:00
} else {
$categories = collect([
'*' => trans('general.all_type', ['type' => trans_choice('general.categories', 2)]),
2017-11-02 02:00:54 +03:00
]);
2017-09-14 22:21:00 +03:00
}
2017-11-02 02:00:54 +03:00
$view->with(['categories' => $categories]);
2017-09-14 22:21:00 +03:00
}
}