Laravel - Uploading Arrays of Image and Video












1















I want to upload an Image and a Video, here is my logic but it seems does not work It only uploads one image. how can i upload 2 separate data. Please Guide me I am new to Laravel thank you



Here is the View which has a form I've used in Form Collectives
Here is where the arrays have been called




My View




{!! Form::open(['action'=>'AdminPaxSafetyController@store', 'method' => 'POST','enctype'=>'multipart/form-data', 'name' => 'add_name', 'id' => 'add_name']) !!}
<div class="form-group">
<div class="table-responsive">
<table class="table table-bordered" id="dynamic_field">
<tr>
<td> {{ Form::file('paxsafety_image') }} &nbsp;&nbsp; <strong>Upload Image</strong>
<br><br>
{{ Form::file('paxsafety_video') }} &nbsp;&nbsp; <strong>Upload Video</strong>


</td>
<td>{{ Form::button('', ['class' => 'btn btn-success fa fa-plus-circle', 'id'=>'add','name'=>'add', 'style'=>'font-size:15px;']) }}</td>
</tr>
</table>
{{Form::submit('submit', ['class'=>'btn btn-primary', 'name'=>'submit'])}}
</div>
</div>
{!! Form::close() !!}



My Controller




 public function create()
{
$this->validate($request, [
'paxsafety_image' => 'required',
'paxsafety_video' => 'required'
]);

if ($request->has('paxsafety_image'))
{
//Handle File Upload

$paxSafety = ;
foreach ($request->file('paxsafety_image') as $key => $file)
{
// Get FileName
$filenameWithExt = $file->getClientOriginalName();
//Get just filename
$filename = pathinfo( $filenameWithExt, PATHINFO_FILENAME);
//Get just extension
$extension = $file->getClientOriginalExtension();
//Filename to Store
$fileNameToStore = $filename.'_'.time().'.'.$extension;
//Upload Image
$path = $file->storeAs('public/paxsafety_folder',$fileNameToStore);
array_push($paxSafety, $fileNameToStore);
}

$fileNameToStore = serialize($paxSafety);
}


foreach ($paxSafety as $key => $value) {
$paxSafetyContent = new PaxSafety;
$paxSafetyContent->paxsafety_image = $value;
$paxSafetyContent->save();
}
return redirect('/admin/airlineplus/inflightmagazines/create')->with('success', 'Inflight Magazine Content Inserted');
}









share|improve this question























  • Try to debug it, what the data in your $request in controller?

    – Oleg Nurutdinov
    Nov 20 '18 at 6:49











  • It does not have an error it just the images are duplicate one is not a video

    – Summer Winter
    Nov 20 '18 at 6:52











  • When I Insert an image and a video.. the video is not inserted the images became duplicate

    – Summer Winter
    Nov 20 '18 at 6:56











  • As I see, videos doesn't inserted, cause you don't process it in your controller.

    – Oleg Nurutdinov
    Nov 20 '18 at 6:58











  • Do you have any solution sir? can you kindly help me please thank you

    – Summer Winter
    Nov 20 '18 at 7:00
















1















I want to upload an Image and a Video, here is my logic but it seems does not work It only uploads one image. how can i upload 2 separate data. Please Guide me I am new to Laravel thank you



Here is the View which has a form I've used in Form Collectives
Here is where the arrays have been called




My View




{!! Form::open(['action'=>'AdminPaxSafetyController@store', 'method' => 'POST','enctype'=>'multipart/form-data', 'name' => 'add_name', 'id' => 'add_name']) !!}
<div class="form-group">
<div class="table-responsive">
<table class="table table-bordered" id="dynamic_field">
<tr>
<td> {{ Form::file('paxsafety_image') }} &nbsp;&nbsp; <strong>Upload Image</strong>
<br><br>
{{ Form::file('paxsafety_video') }} &nbsp;&nbsp; <strong>Upload Video</strong>


</td>
<td>{{ Form::button('', ['class' => 'btn btn-success fa fa-plus-circle', 'id'=>'add','name'=>'add', 'style'=>'font-size:15px;']) }}</td>
</tr>
</table>
{{Form::submit('submit', ['class'=>'btn btn-primary', 'name'=>'submit'])}}
</div>
</div>
{!! Form::close() !!}



My Controller




 public function create()
{
$this->validate($request, [
'paxsafety_image' => 'required',
'paxsafety_video' => 'required'
]);

if ($request->has('paxsafety_image'))
{
//Handle File Upload

$paxSafety = ;
foreach ($request->file('paxsafety_image') as $key => $file)
{
// Get FileName
$filenameWithExt = $file->getClientOriginalName();
//Get just filename
$filename = pathinfo( $filenameWithExt, PATHINFO_FILENAME);
//Get just extension
$extension = $file->getClientOriginalExtension();
//Filename to Store
$fileNameToStore = $filename.'_'.time().'.'.$extension;
//Upload Image
$path = $file->storeAs('public/paxsafety_folder',$fileNameToStore);
array_push($paxSafety, $fileNameToStore);
}

$fileNameToStore = serialize($paxSafety);
}


foreach ($paxSafety as $key => $value) {
$paxSafetyContent = new PaxSafety;
$paxSafetyContent->paxsafety_image = $value;
$paxSafetyContent->save();
}
return redirect('/admin/airlineplus/inflightmagazines/create')->with('success', 'Inflight Magazine Content Inserted');
}









share|improve this question























  • Try to debug it, what the data in your $request in controller?

    – Oleg Nurutdinov
    Nov 20 '18 at 6:49











  • It does not have an error it just the images are duplicate one is not a video

    – Summer Winter
    Nov 20 '18 at 6:52











  • When I Insert an image and a video.. the video is not inserted the images became duplicate

    – Summer Winter
    Nov 20 '18 at 6:56











  • As I see, videos doesn't inserted, cause you don't process it in your controller.

    – Oleg Nurutdinov
    Nov 20 '18 at 6:58











  • Do you have any solution sir? can you kindly help me please thank you

    – Summer Winter
    Nov 20 '18 at 7:00














1












1








1








I want to upload an Image and a Video, here is my logic but it seems does not work It only uploads one image. how can i upload 2 separate data. Please Guide me I am new to Laravel thank you



Here is the View which has a form I've used in Form Collectives
Here is where the arrays have been called




My View




{!! Form::open(['action'=>'AdminPaxSafetyController@store', 'method' => 'POST','enctype'=>'multipart/form-data', 'name' => 'add_name', 'id' => 'add_name']) !!}
<div class="form-group">
<div class="table-responsive">
<table class="table table-bordered" id="dynamic_field">
<tr>
<td> {{ Form::file('paxsafety_image') }} &nbsp;&nbsp; <strong>Upload Image</strong>
<br><br>
{{ Form::file('paxsafety_video') }} &nbsp;&nbsp; <strong>Upload Video</strong>


</td>
<td>{{ Form::button('', ['class' => 'btn btn-success fa fa-plus-circle', 'id'=>'add','name'=>'add', 'style'=>'font-size:15px;']) }}</td>
</tr>
</table>
{{Form::submit('submit', ['class'=>'btn btn-primary', 'name'=>'submit'])}}
</div>
</div>
{!! Form::close() !!}



My Controller




 public function create()
{
$this->validate($request, [
'paxsafety_image' => 'required',
'paxsafety_video' => 'required'
]);

if ($request->has('paxsafety_image'))
{
//Handle File Upload

$paxSafety = ;
foreach ($request->file('paxsafety_image') as $key => $file)
{
// Get FileName
$filenameWithExt = $file->getClientOriginalName();
//Get just filename
$filename = pathinfo( $filenameWithExt, PATHINFO_FILENAME);
//Get just extension
$extension = $file->getClientOriginalExtension();
//Filename to Store
$fileNameToStore = $filename.'_'.time().'.'.$extension;
//Upload Image
$path = $file->storeAs('public/paxsafety_folder',$fileNameToStore);
array_push($paxSafety, $fileNameToStore);
}

$fileNameToStore = serialize($paxSafety);
}


foreach ($paxSafety as $key => $value) {
$paxSafetyContent = new PaxSafety;
$paxSafetyContent->paxsafety_image = $value;
$paxSafetyContent->save();
}
return redirect('/admin/airlineplus/inflightmagazines/create')->with('success', 'Inflight Magazine Content Inserted');
}









share|improve this question














I want to upload an Image and a Video, here is my logic but it seems does not work It only uploads one image. how can i upload 2 separate data. Please Guide me I am new to Laravel thank you



Here is the View which has a form I've used in Form Collectives
Here is where the arrays have been called




My View




{!! Form::open(['action'=>'AdminPaxSafetyController@store', 'method' => 'POST','enctype'=>'multipart/form-data', 'name' => 'add_name', 'id' => 'add_name']) !!}
<div class="form-group">
<div class="table-responsive">
<table class="table table-bordered" id="dynamic_field">
<tr>
<td> {{ Form::file('paxsafety_image') }} &nbsp;&nbsp; <strong>Upload Image</strong>
<br><br>
{{ Form::file('paxsafety_video') }} &nbsp;&nbsp; <strong>Upload Video</strong>


</td>
<td>{{ Form::button('', ['class' => 'btn btn-success fa fa-plus-circle', 'id'=>'add','name'=>'add', 'style'=>'font-size:15px;']) }}</td>
</tr>
</table>
{{Form::submit('submit', ['class'=>'btn btn-primary', 'name'=>'submit'])}}
</div>
</div>
{!! Form::close() !!}



My Controller




 public function create()
{
$this->validate($request, [
'paxsafety_image' => 'required',
'paxsafety_video' => 'required'
]);

if ($request->has('paxsafety_image'))
{
//Handle File Upload

$paxSafety = ;
foreach ($request->file('paxsafety_image') as $key => $file)
{
// Get FileName
$filenameWithExt = $file->getClientOriginalName();
//Get just filename
$filename = pathinfo( $filenameWithExt, PATHINFO_FILENAME);
//Get just extension
$extension = $file->getClientOriginalExtension();
//Filename to Store
$fileNameToStore = $filename.'_'.time().'.'.$extension;
//Upload Image
$path = $file->storeAs('public/paxsafety_folder',$fileNameToStore);
array_push($paxSafety, $fileNameToStore);
}

$fileNameToStore = serialize($paxSafety);
}


foreach ($paxSafety as $key => $value) {
$paxSafetyContent = new PaxSafety;
$paxSafetyContent->paxsafety_image = $value;
$paxSafetyContent->save();
}
return redirect('/admin/airlineplus/inflightmagazines/create')->with('success', 'Inflight Magazine Content Inserted');
}






php mysql arrays laravel






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 6:40









Summer WinterSummer Winter

32212




32212













  • Try to debug it, what the data in your $request in controller?

    – Oleg Nurutdinov
    Nov 20 '18 at 6:49











  • It does not have an error it just the images are duplicate one is not a video

    – Summer Winter
    Nov 20 '18 at 6:52











  • When I Insert an image and a video.. the video is not inserted the images became duplicate

    – Summer Winter
    Nov 20 '18 at 6:56











  • As I see, videos doesn't inserted, cause you don't process it in your controller.

    – Oleg Nurutdinov
    Nov 20 '18 at 6:58











  • Do you have any solution sir? can you kindly help me please thank you

    – Summer Winter
    Nov 20 '18 at 7:00



















  • Try to debug it, what the data in your $request in controller?

    – Oleg Nurutdinov
    Nov 20 '18 at 6:49











  • It does not have an error it just the images are duplicate one is not a video

    – Summer Winter
    Nov 20 '18 at 6:52











  • When I Insert an image and a video.. the video is not inserted the images became duplicate

    – Summer Winter
    Nov 20 '18 at 6:56











  • As I see, videos doesn't inserted, cause you don't process it in your controller.

    – Oleg Nurutdinov
    Nov 20 '18 at 6:58











  • Do you have any solution sir? can you kindly help me please thank you

    – Summer Winter
    Nov 20 '18 at 7:00

















Try to debug it, what the data in your $request in controller?

– Oleg Nurutdinov
Nov 20 '18 at 6:49





Try to debug it, what the data in your $request in controller?

– Oleg Nurutdinov
Nov 20 '18 at 6:49













It does not have an error it just the images are duplicate one is not a video

– Summer Winter
Nov 20 '18 at 6:52





It does not have an error it just the images are duplicate one is not a video

– Summer Winter
Nov 20 '18 at 6:52













When I Insert an image and a video.. the video is not inserted the images became duplicate

– Summer Winter
Nov 20 '18 at 6:56





When I Insert an image and a video.. the video is not inserted the images became duplicate

– Summer Winter
Nov 20 '18 at 6:56













As I see, videos doesn't inserted, cause you don't process it in your controller.

– Oleg Nurutdinov
Nov 20 '18 at 6:58





As I see, videos doesn't inserted, cause you don't process it in your controller.

– Oleg Nurutdinov
Nov 20 '18 at 6:58













Do you have any solution sir? can you kindly help me please thank you

– Summer Winter
Nov 20 '18 at 7:00





Do you have any solution sir? can you kindly help me please thank you

– Summer Winter
Nov 20 '18 at 7:00












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53387557%2flaravel-uploading-arrays-of-image-and-video%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53387557%2flaravel-uploading-arrays-of-image-and-video%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

ComboBox Display Member on multiple fields

Is it possible to collect Nectar points via Trainline?