Created
April 10, 2021 20:10
-
-
Save devgiordane/1b4292613fba5af9c3c1a66985e72507 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//image upload | |
if ($request->hasFile('image') && $request->file('image')->isValid()) { | |
$requestImage = $request->image; | |
$extension = $requestImage->extension(); | |
$imageName = $requestImage->getClientOriginalName() . strtotime("now") . "." . $extension; | |
$request->file('image')->move(public_path('img/events', $imageName)); | |
$event->image = $imageName; | |
} | |
$event->save(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment