Fenos\Notifynder\Contracts\StoreNotification::storeMultiple PHP Method

storeMultiple() public method

Save multiple notifications sent at once.
public storeMultiple ( array $info ) : mixed
$info array
return mixed
    public function storeMultiple(array $info);

Usage Example

Beispiel #1
0
 /**
  * Send multiple notifications
  *
  * @param  StoreNotification $sender
  * @return mixed
  */
 public function send(StoreNotification $sender)
 {
     return $sender->storeMultiple($this->infoNotifications);
 }
All Usage Examples Of Fenos\Notifynder\Contracts\StoreNotification::storeMultiple