This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Models\Concerns; | |
use Illuminate\Database\Eloquent\Casts\Attribute; | |
use Illuminate\Http\UploadedFile; | |
use Illuminate\Support\Facades\Storage; | |
use Illuminate\Support\Uri; | |
trait HasPhoto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Notifications\Notification; | |
use SensitiveParameter; | |
class MagicLoginLink extends Notification | |
{ | |
use Queueable; | |
public function __construct(#[SensitiveParameter] protected string $token) {} |