Yes, I am sure you can by using a POST request and using MVC.
php artisan make:model Photo -mcr
This Will create your model, migration and resource controller.
Route::resource('photo', PhotoController::class);
The route will create a resource route that you can check by php artisan route:list
Then you will use
In blade.
On my phone, bad writing. Hope this helps.