Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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);
    }

}
like image 808
Naveen Gamage Avatar asked Sep 05 '25 02:09

Naveen Gamage


1 Answers

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'];
like image 165
Marwelln Avatar answered Sep 06 '25 21:09

Marwelln