Naveen Gamage
Naveen Gamage

Reputation: 1884

Laravel create method

I'm trying to store an array using Laravel's create method

$input = Input::all();
$new_media = $this->media->create($input);

or

$input = Input::all();
$new_media = Media::create($input);

both codes does not work.

This is the error I'm getting.

Method [create] does not exist.

Laravel documentation here http://laravel.com/docs/4.2/eloquent

From laravel docs

// Create a new user in the database...
$user = User::create(array('name' => 'John'));

Media Model

<?php

class Media extends Eloquent {

    protected $table = 'media';

    protected $guarded = array();

    public static $rules_video = array(
        'title' => 'required',
        'url' => 'required'
    );
    public static $rules_image = array(
        'title' => 'required'
    );

    public function category(){
        return Category::find($this->category_id);
    }

}

Upvotes: 4

Views: 43797

Answers (1)

Marwelln
Marwelln

Reputation: 29433

You need to setup Mass Assignments when using create, fill or update. See this answer.

Remove your guarded property and create a new one called fillable as an array with the allowed fields to be updated with mass assignments.

protected $fillable = ['title', 'url'];

Upvotes: 12

Related Questions