Posts by Ronnyere Andrade • 1 point
4 posts
-
0
votes0
answers205
viewsQ: How to use the Chunk method of Laravel Excel?
public function uploadNotaCorte(Request $request, EstadoRepository $estadoRepository) { $error = array(); $path = $request->file('file')->getRealPath(); $notasCorte = Excel::load($path,…
-
0
votes1
answer245
viewsQ: How to delete an image from Storage Folder 5.2?
I’m using this code to upload image this all working my doubt and in the if condition to delete the old image I have to leave a default image.jpg as default plus my condition if this deleting that…
-
0
votes1
answer551
viewsQ: How to recover image from Storage folder using INTERVENTION IMAGE Laravel 5.2?
This solution works in Public more folder when switching to Storage folder I can’t grab the image and display in the view someone can help me? Controller public function profile(){ return…
-
0
votes1
answer266
viewsQ: How to remove photos from public folder or protect to not be accessed by URL using Intervention image with Laravel?
I am using the image Intervention is this all working, my doubt and I would like to remove the saved photos from the public folder not to be accessed by the URL or protect the access by the URL for…