19
app/Models/ProfileLink.php
Executable file
19
app/Models/ProfileLink.php
Executable file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ProfileLink extends Model
|
||||
{
|
||||
protected $guarded = ['id'];
|
||||
|
||||
protected $visible = [
|
||||
'url', 'title'
|
||||
];
|
||||
|
||||
public function getUrlAttribute($value)
|
||||
{
|
||||
return parse_url($value, PHP_URL_SCHEME) === null ? "https://$value" : $value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user