コード例 #1
0
ファイル: BirthdayParties.php プロジェクト: Headrun-php/TLG
 static function getBirthdaysByCustomer($customerId)
 {
     return BirthdayParties::with('Customers', 'Students')->where('customer_id', '=', $customerId)->get();
 }