-
Notifications
You must be signed in to change notification settings - Fork 80
Open
Description
I would like to save image in a directory from public folder in laravel 5.6. So, I used the code as documentation did like below.
$orginal_path = $request->file->store( 'cropped', 'public' );
$medium = Image::make($orginal_path,array(
'width' => 300,
'height' => 300,
'grayscale' => true
))->save($orginal_path);
I added true for image.php from config directory.
'write_image' => true,
Did I miss anything?
Metadata
Metadata
Assignees
Labels
No labels