You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
707 B
32 lines
707 B
<?php
|
|
|
|
namespace mstrNmspc;
|
|
|
|
use App\User;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Master extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['name', 'description', 'creator_id'];
|
|
|
|
public function getNameLinkAttribute()
|
|
{
|
|
$title = __('app.show_detail_title', [
|
|
'name' => $this->name, 'type' => __('master.master'),
|
|
]);
|
|
$link = '<a href="'.route('masters.show', $this).'"';
|
|
$link .= ' title="'.$title.'">';
|
|
$link .= $this->name;
|
|
$link .= '</a>';
|
|
|
|
return $link;
|
|
}
|
|
|
|
public function creator()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|