Since I have this data in a file I do not see why to make a request in the database.
Example of my curly code:
$produtos = Cache::rememberForever('produtos', function () {
return DB::table('produtos')
->get();
});
$produtos = \Cache::get('produtos');
Example of my code that fetches the data from the database:
$produtos = Produto::where('titulo', 'like', '%'.Input::get('texto').'%')
->orWhere('descricao', 'like', '%'.Input::get('texto').'%')
->get();
I tried to do something like this:
$produtos = \Cache::get('produtos')->where('titulo', 'like', '%'.Input::get('texto').'%');
But without success, someone would have a suggestion of how to proceed, I thank you for any help: