mardi 31 mai 2016

How to upload picture and store to database in Laravel 5

I need to upload picture and store to database in Laravel 5.

My current code:

Form:

<form method="POST" enctype="multipart/form-data" action="">
    {!! csrf_field() !!}
    <div class="form-group">
        <label for="name">Name</label>
        <input type="text" name="name" id="name" class="form-control" required>
    </div>
    <div class="form-group">
        <label for="image">Image</label>
        <input type="file" id="image">
    </div>
    <div class="form-group">
        <button type="submit" class="btn btn-primary">Save</button>
    </div>
</form>

Controller:

public function store(Request $request)
{
    $this->validate($request, [
        'name' => 'required|max:100|unique:products',
    ]);

    $input = $request->all();
    Product::create($input);

    return redirect('products');
}

$request->hasFile('image')) returns false.



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/1O2v7HI
via IFTTT

Aucun commentaire:

Enregistrer un commentaire