Posts by Alexandre Barbosa • 131 points
4 posts
-
2
votes1
answer201
viewsA: Laravel - To have a unique function of creation of the entity
What I imagine is that you may have got confused with the idea of Service, Service Container and Service Provider. Regardless of being or not, without going into too much detail, but enough: What…
-
1
votes1
answer348
viewsA: How to download private files in Windows?
I usually save in Storage, for example this my method: public function store(StoreManagedFileFormRequest $request) { if ($request->hasFile('file')) { $file = $request->file('file');…
-
0
votes3
answers89
viewsA: With putting together a query on Eloquent?
By the time you are the post should have solved, but I would do so: $juros = DB::table('parcelas') ->select('juros') ->whereRaw("? between valor_min and valor_max", [$valor]) ->get(); Or…
-
2
votes0
answers195
viewsQ: Problems when migrating Cakephp site between servers
I’m trying to migrate the site between servers, but to validate the functioning of the site, downloaded and I’m trying to install on Wamp. I have no experience with the framework Cake. I already…