Skip to content

Instantly share code, notes, and snippets.

@ggMartinez
Created September 12, 2024 17:01
Show Gist options
  • Save ggMartinez/01dbb594c48289b875d63fc10f0844ac to your computer and use it in GitHub Desktop.
Save ggMartinez/01dbb594c48289b875d63fc10f0844ac to your computer and use it in GitHub Desktop.
Subir imagen - Laravel
<?php
// Asumiendo que el formulario envia por post una imagen, en un input llamado "imagen"
$file = $request->file('imagen');
$originalName = $file->getClientOriginalName();
$fileExtension = $file->getClientOriginalExtension();
$fileName = $originalName "." . $fileExtension;
$destinationPath = 'imagenes';
$file->move($destinationPath,$fileName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment