我试图理解一个保存具有多种关系的模型的过程,但我仍然无法弄清楚如何以“犹太教”的方式去做。
首先 - 我有一个属于类别(Eventcat)和位置的事件模型:
// Event.php
class Event extends Eloquent {
protected $table = 'events';
public function location()
{
return $this->belongsTo('Location');
}
public function eventcat()
{
return $this->belongsTo('Eventcat');
}
public function users()
{
return $this->belongsToMany('User');
}
}
// Location.php
class Location extends Eloquent
{
protected $table = 'locations';
public function events()
{
return $this->hasMany('Event');
}
}
// Eventcat.php
class Eventcat extends Eloquent
{
protected $table = 'eventcats';
public function events()
{
return $this->hasMany('Event');
}
}
我已经在数据库中添加了几个类别和位置,现在我试图让事件保存工作。我认为$event->eventcat()->associate( $eventcat )
会有效,但我收到Call to undefined method eventcat()
错误。
public function postCreateEvent() {
$event = new Event();
$eventcat = Eventcat::find( Input::get('event-create-eventcat[]') );
$location = Location::find( Input::get('event-create-location[]') );
$event->title = Input::get('event-create-title');
$event->description = Input::get('event-create-description');
$event->price = Input::get('event-create-price');
$event->start_date = Input::get('event-create-start_date');
$event->end_date = Input::get('event-create-end_date');
$event->eventcat()->associate( $eventcat );
$event->location()->associate( $location );
$event->save();
}
我已经阅读了文档,API和一些线程,但我仍然无法找到处理此问题的最佳方法。
感谢您的回复!
答案 0 :(得分:1)
我实际上打赌你的班级名称有冲突。 Laravel包含一个Event
类,我想知道这不是代码中调用的内容。作为快速测试,您可以重命名您的班级FooEvent
,看看它是否有效。
最好的解决方案可能是为您的模型命名空间(请参阅http://chrishayes.ca/blog/code/laravel-4-methods-staying-organized进行快速介绍),这样您的模型仍然可以被称为Event而不会与内置类冲突。