36 lines
938 B
PHP
36 lines
938 B
PHP
<?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('apps.api_key')) {
|
|
$categories = Cache::remember('modules.categories.' . language()->getShortCode(), Date::now()->addHour(6), function () {
|
|
return collect($this->getCategories())->pluck('name', 'slug')
|
|
->prepend(trans('general.all_type', ['type' => trans_choice('general.categories', 2)]), '*');
|
|
});
|
|
} else {
|
|
$categories = collect([
|
|
'*' => trans('general.all_type', ['type' => trans_choice('general.categories', 2)]),
|
|
]);
|
|
}
|
|
|
|
$view->with(['categories' => $categories]);
|
|
}
|
|
}
|