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.
25 lines
436 B
25 lines
436 B
<?php
|
|
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: GuaPi
|
|
* @Date: 2021-08-11 17:04:47
|
|
* @LastEditors: GuaPi
|
|
* @LastEditTime: 2021-08-11 17:51:06
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class InvitePoster extends Model
|
|
{
|
|
protected $table = 'invite_poster';
|
|
|
|
protected $appends = ['image_url'];
|
|
|
|
function getImageUrlAttribute($value)
|
|
{
|
|
return getFullPath($this->image);
|
|
}
|
|
}
|
|
|