74 lines
1.7 KiB
PHP
74 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use App\Models\User;
|
||
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use App\Traits\CreatedUpdatedBy;
|
||
|
|
||
|
class Campaigns extends Model
|
||
|
{
|
||
|
use HasFactory, CreatedUpdatedBy;
|
||
|
|
||
|
protected $primaryKey = 'campaign_id';
|
||
|
public $timestamps = true;
|
||
|
protected $fillable = [
|
||
|
'title',
|
||
|
'alias',
|
||
|
'description',
|
||
|
'details',
|
||
|
'cover_photo',
|
||
|
'thumb',
|
||
|
'starts',
|
||
|
'ends',
|
||
|
'success_message',
|
||
|
'sms_message',
|
||
|
'coupon_codes',
|
||
|
'offered_choices',
|
||
|
'og_image',
|
||
|
'seo_title',
|
||
|
'seo_keywords',
|
||
|
'seo_description',
|
||
|
'meta_tags',
|
||
|
'display_order',
|
||
|
'status',
|
||
|
'remarks',
|
||
|
'created_at',
|
||
|
'createdby',
|
||
|
'updated_at',
|
||
|
'updatedby',
|
||
|
'pass_layout',
|
||
|
'qr_position',
|
||
|
'id_position',
|
||
|
'name_position',
|
||
|
'email_position',
|
||
|
'notify_emails',
|
||
|
'google_sheet_id',
|
||
|
'google_sheet_worksheet',
|
||
|
|
||
|
];
|
||
|
|
||
|
protected $appends = ['status_name'];
|
||
|
|
||
|
protected function getStatusNameAttribute()
|
||
|
{
|
||
|
return $this->status == 1 ? '<span class="badge text-bg-success-soft"> Active </span>' : '<span class="badge text-bg-danger-soft">Inactive</span>';
|
||
|
}
|
||
|
|
||
|
protected function createdBy(): Attribute
|
||
|
{
|
||
|
return Attribute::make(
|
||
|
get: fn ($value) => User::find($value) ? User::find($value)->name : '',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
protected function updatedBy(): Attribute
|
||
|
{
|
||
|
return Attribute::make(
|
||
|
get: fn ($value) => User::find($value) ? User::find($value)->name : '',
|
||
|
);
|
||
|
}
|
||
|
}
|