I'm not able to save multiple images in my seat, my code below to follow the highlighted line with the arrow ( - > ).
Note: when it was just a normal saved image.
public function store(Request $request)
{
$this->validate($request, [
'descricao' => 'required',
'valor' => 'required',
'id_categorias' => 'required'
]);
//verifica se a img existe e faz a validação da mesma
--> if ($request->hasFile('imagem') && $request->file('imagem')->isValid())
{
$filePath = $request->file('imagem')->store('public');
foreach ($request->file('imagem') as $imagem){
ProdutosImg::create([
'id_produto' =>$request->id,
'imagem' => $filePath,
]);
}
$produto = Produto::create([
'descricao' => $request['descricao'],
'valor' => $request['valor'],
'id_categorias' => $request['id_categorias'],
'imagem' => $filePath,
]);
\Session::flash('mensagem_sucesso_produtos', 'Produto cadastrado com sucesso!!');
return Redirect::to('produtos');
} else {
Produto::create($request->all());
\Session::flash('mensagem_sucesso_produtos', 'Produto cadastrado com sucesso!!');
return Redirect::to('produtos');
}
}
Form:
@extends('layouts.app')
@section('content')
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" type="text/javascript"></script>
<script src="jquery.maskMoney.js" type="text/javascript"></script>
</head>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">
@if(Route::is('produtos.editar'))
Editando produto: <strong>{{$produto->descricao}}</strong>
@else
Cadastro de novo produto
@endif
<a class="pull-right" href="{{url('produtos')}}">Listar produtos</a>
</div>
<div class="panel-body">
<div class="panel-body">
@if(Route::is('produtos.editar'))
{{Form::model($produto,['class' => 'form-horizontal', 'method'=>'PATCH','url'=> route('produtos.update', $produto->id),
'files' => true])}}
{{ Form::hidden('id') }}
@else
{{ Form::open(['class' => 'form-horizontal', 'method' => 'POST', 'url' => route('produtos.salvar'),
'files' => true]) }}
@endif
<div class="form-group">
{!! Form::label('descricao','Descrição: ',['class' => 'control-label col-md-4']) !!}
<div class="col-md-6">
{!! Form::input('text','descricao',null,['class'=>'form-control {{ $errors->has("descricao") ? "has-error" : "" }}','autofocus','placeholder'=>'Descriçao']) !!}
</div>
@if($errors->has('name'))
<span class="help-block">{{$errors->first('name')}}</span>
@endif
</div>
<div class="form-group">
{!! Form::label('valor','Valor: ', ['class' => 'control-label col-md-4']) !!}
<div class="col-md-6">
{!! Form::input('text','valor',null,['class'=>'form-control {{$errors->has("valor") ? "has-error" : ""}}','autofocus','placeholder'=>'Valor']) !!}
</div>
@if($errors->has('name'))
<span class="help-block">{{$errors->first('name')}}</span>
@endif
</div>
<div class="form-group">
{!! Form::label('categoria','Categoria: ', ['class' => 'control-label col-md-4']) !!}
<div class="col-md-6">
<select name="id_categorias" id="categoria" class="form-control">
@foreach($categorias as $categoria)
<option value="{{ $categoria->id }}">{{ $categoria->descricao }}</option>
@endforeach
</select>
</div>
@if($errors->has('name'))
<span class="help-block">{{$errors->first('name')}}</span>
@endif
</div>
<div class="form-group">
{!! Form::label('imagem','Imagem: ', ['class' => 'control-label col-md-4']) !!}
<div class="col-md-6">
<input type="file" name="imagem[]" multiple/>
</div>
</div>
<div class="form-group">
<div class="col-md-6 col-md-offset-4"><br>
<button type="submit" class="btn btn-primary ">
@if(Route::is('produtos.editar'))
Editar
@else
Cadastrar
@endif
</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection
error below: appears when I'm going to save the image, so I'm looking at it in if: /