File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Notifications
Upload
[..]
Action.php (459 B)
Edit
Rename
Del
AnonymousNotifiable.php (1.6 KB)
Edit
Rename
Del
Channels/
Rename
Del
Console/
Rename
Del
DatabaseNotificationCollection.php (664 B)
Edit
Rename
Del
Events/
Rename
Del
Messages/
Rename
Del
RoutesNotifications.php (1.27 KB)
Edit
Rename
Del
resources/
Rename
Del
Edit: Action.php
<?php namespace Illuminate\Notifications; class Action { /** * The action text. * * @var string */ public $text; /** * The action URL. * * @var string */ public $url; /** * Create a new action instance. * * @param string $text * @param string $url */ public function __construct($text, $url) { $this->url = $url; $this->text = $text; } }
Simpan