$author = new Model_Author(); $author->name = Input::post('author_name'); $author->books->title = Input::post('book_title'); $author->save();
$author = new Model_Author(); $author->name = Input::post('author_name'); $author->books = new Model_Book(); $author->books->title = Input::post('book_title'); $author->save();
$author = new Model_Author(); $author->name = Input::post('author_name'); $book = new Model_Book(); $book->title = Input::post('book_title'); $author->books[] = $book; $author->save();
$author = new Model_Author(); $author->name = Input::post('author_name'); $author->books[1] = new Model_Book(); $author->books[1]->title = Input::post('book_title'); $author->save();
It looks like you're new here. If you want to get involved, click one of these buttons!