Posts by Roberson Faria • 61 points
5 posts
-
0
votes1
answer402
viewsA: Block query string url - php
Take a look at this package: https://packagist.org/packages/ramsey/uuid I use it to generate a single hash for each record and instead of working with the sequential key in Gets and Posts I use the…
-
1
votes2
answers1908
viewsA: Adapting Code to Laravel , CEP Automatic Fill
I created a package for Laravel to communicate with Cepaberto, already makes all the abstraction of the methods of consultation to cep, city, etc.…
-
0
votes1
answer1194
viewsA: How to access an image that went to my uploads folder via Fileupload
Take a look at the official documentation: https://laravel.com/docs/5.5/filesystem#file-urls But when you upload it plays the file in the Storage folder, but only the public folder is publicly…
-
2
votes1
answer617
viewsQ: Advantages x Disadvantages SPA Vuejs
I have an application (closed system) in PHP structured in the company I work and we will rewrite this application to improve performance, usability and evolve this application. I am studying Vuejs…
-
0
votes1
answer292
viewsA: Refresh page conflicting between Windows and vuejs
Felipe, I went through this same problem just now and treated as follows: I left the web route(Routes/web.php) as follows: Route::any('{all}', function () { return view('index'); })->where(['all'…