1, ] ); $match1->teams()->sync( [ 1 => ['is_home' => true], 4 => ['is_home' => false] ] ); $match2 = Model\Match::create( [ 'venue_id' => 2, ] ); $match2->teams()->sync( [ 2 => ['is_home' => true], 5 => ['is_home' => false] ] ); $match3 = Model\Match::create( [ 'venue_id' => 3, ] ); $match3->teams()->sync( [ 3 => ['is_home' => true], 6 => ['is_home' => false] ] ); $match1->tournaments()->sync(1); $match2->tournaments()->sync(1); $match3->tournaments()->sync(1); } }