user, new BookingManagementNotifyer($booking_management, 'complete'));; } /** * Send the notification to the users after verify. * * @param BookingManagement $booking_management * * @return void */ public function verify(BookingManagement $booking_management) { return Notification::send($booking_management->user, new BookingManagementNotifyer($booking_management, 'verify'));; } /** * Send the notification to the users after approve. * * @param BookingManagement $booking_management * * @return void */ public function approve(BookingManagement $booking_management) { return Notification::send($booking_management->user, new BookingManagementNotifyer($booking_management, 'approve'));; } /** * Send the notification to the users after publish. * * @param BookingManagement $booking_management * * @return void */ public function publish(BookingManagement $booking_management) { return Notification::send($booking_management->user, new BookingManagementNotifyer($booking_management, 'publish'));; } /** * Send the notification to the users after archive. * * @param BookingManagement $booking_management * * @return void */ public function archive(BookingManagement $booking_management) { return Notification::send($booking_management->user, new BookingManagementNotifyer($booking_management, 'archive'));; } /** * Send the notification to the users after unpublish. * * @param BookingManagement $booking_management * * @return void */ public function unpublish(BookingManagement $booking_management) { return Notification::send($booking_management->user, new BookingManagementNotifyer($booking_management, 'unpublish'));; } }