REBELinBLUE\Deployer\Http\Controllers\Resources\NotificationController::store PHP Method

store() public method

Store a newly created notification in storage.
public store ( StoreNotificationRequest $request ) : Model
$request REBELinBLUE\Deployer\Http\Requests\StoreNotificationRequest
return Illuminate\Database\Eloquent\Model
    public function store(StoreNotificationRequest $request)
    {
        return $this->repository->create($request->only('name', 'channel', 'webhook', 'project_id', 'icon', 'failure_only'));
    }
NotificationController