36 lines
911 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)
{
if (setting('general.api_token')) {
$categories = Cache::remember('modules.categories', Date::now()->addHour(6), function () {
return collect($this->getCategories())->pluck('name', 'slug')
2017-09-27 21:58:43 +03:00
->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-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
}
}