diff --git a/stubs/cast.inbound.stub b/stubs/cast.inbound.stub new file mode 100644 index 0000000..e2425f3 --- /dev/null +++ b/stubs/cast.inbound.stub @@ -0,0 +1,14 @@ + + */ + public function attachments(): array + { + return []; + } +} diff --git a/stubs/markdown-notification.stub b/stubs/markdown-notification.stub new file mode 100644 index 0000000..cec12db --- /dev/null +++ b/stubs/markdown-notification.stub @@ -0,0 +1,35 @@ +markdown('{{ view }}'); + } + + public function toArray(object $notifiable): array + { + return [ + // + ]; + } +} diff --git a/stubs/notification.stub b/stubs/notification.stub new file mode 100644 index 0000000..0090235 --- /dev/null +++ b/stubs/notification.stub @@ -0,0 +1,38 @@ +line('The introduction to the notification.') + ->action('Notification Action', url('/')) + ->line('Thank you for using our application!'); + } + + public function toArray(object $notifiable): array + { + return [ + // + ]; + } +} diff --git a/stubs/observer.plain.stub b/stubs/observer.plain.stub new file mode 100644 index 0000000..e2506b7 --- /dev/null +++ b/stubs/observer.plain.stub @@ -0,0 +1,8 @@ +