File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs
Upload
[..]
broadcasting-routes.stub (163 B)
Edit
Rename
Del
cast.inbound.stub (441 B)
Edit
Rename
Del
cast.stub (655 B)
Edit
Rename
Del
channel.stub (354 B)
Edit
Rename
Del
class.stub (166 B)
Edit
Rename
Del
config.stub (26 B)
Edit
Rename
Del
console.stub (370 B)
Edit
Rename
Del
echo-js-ably.stub (295 B)
Edit
Rename
Del
echo-js-pusher.stub (444 B)
Edit
Rename
Del
echo-js-reverb.stub (458 B)
Edit
Rename
Del
event.stub (790 B)
Edit
Rename
Del
exception-report.stub (194 B)
Edit
Rename
Del
job.batched.queued.stub (557 B)
Edit
Rename
Del
job.middleware.stub (263 B)
Edit
Rename
Del
job.queued.stub (394 B)
Edit
Rename
Del
job.stub (331 B)
Edit
Rename
Del
listener.queued.stub (415 B)
Edit
Rename
Del
listener.stub (363 B)
Edit
Rename
Del
listener.typed.queued.stub (446 B)
Edit
Rename
Del
listener.typed.stub (394 B)
Edit
Rename
Del
mail.stub (1 KB)
Edit
Rename
Del
maintenance-mode.stub (2.03 KB)
Edit
Rename
Del
markdown-mail.stub (1.01 KB)
Edit
Rename
Del
markdown.stub (175 B)
Edit
Rename
Del
model.pivot.stub (160 B)
Edit
Rename
Del
model.stub (150 B)
Edit
Rename
Del
notification.stub (1.13 KB)
Edit
Rename
Del
observer.stub (872 B)
Edit
Rename
Del
pest.stub (109 B)
Edit
Rename
Del
pest.unit.stub (71 B)
Edit
Rename
Del
policy.stub (1.41 KB)
Edit
Rename
Del
provider.stub (324 B)
Edit
Rename
Del
resource-collection.stub (395 B)
Edit
Rename
Del
resource.stub (368 B)
Edit
Rename
Del
routes.stub (59 B)
Edit
Rename
Del
rule.stub (443 B)
Edit
Rename
Del
scope.stub (358 B)
Edit
Rename
Del
trait.stub (64 B)
Edit
Rename
Del
view-mail.stub (1 KB)
Edit
Rename
Del
view.pest.stub (136 B)
Edit
Rename
Del
view.stub (38 B)
Edit
Rename
Del
view.test.stub (314 B)
Edit
Rename
Del
Edit: notification.stub
<?php namespace {{ namespace }}; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; class {{ class }} extends Notification { use Queueable; /** * Create a new notification instance. */ public function __construct() { // } /** * Get the notification's delivery channels. * * @return array<int, string> */ public function via(object $notifiable): array { return ['mail']; } /** * Get the mail representation of the notification. */ public function toMail(object $notifiable): MailMessage { return (new MailMessage) ->line('The introduction to the notification.') ->action('Notification Action', url('/')) ->line('Thank you for using our application!'); } /** * Get the array representation of the notification. * * @return array<string, mixed> */ public function toArray(object $notifiable): array { return [ // ]; } }
Simpan