Answers for "laravel change filename"

PHP
1

laravel get file name

$path = $request->image->getClientOriginalName();
Posted by: Guest on May-09-2021
0

Laravel Code To Rename file on server in the storage folder

///PLEASE VOTE ON CODEGREPPER IF THIS CODE HELPS YOU 
$destination = 'public/reports/'.$oldreport.'.pdf';//or any extension such as jpeg,png
        $newdestination = 'public/reports/'.$reportkey.'.pdf';
      $bb=  Storage::rename( $destination, $newdestination ); // keep the same folder to just rename file on server
Posted by: Guest on January-27-2022

Browse Popular Code Answers by Language