/** * Compose the view. * * @return void */ public function compose(View $view) { $value = Cache::remember('users', 3, function () { return DB::table('users')->get(); }); $view->with('tags', Tags::all())->with('categories', Category::all()); }
/** * Compose the view. * * @return void */ public function compose(View $view) { $view->with('tags', Tags::get()); }