ok

Mini Shell

Direktori : /proc/self/root/home2/selectio/www/billingsoftwarenew/core/app/Models/
Upload File :
Current File : //proc/self/root/home2/selectio/www/billingsoftwarenew/core/app/Models/SupportTicket.php

<?php

namespace App\Models;

use App\Constants\Status;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Model;

class SupportTicket extends Model {
    public function fullname(): Attribute {
        return new Attribute(
            get: fn () => $this->name,
        );
    }

    public function username(): Attribute {
        return new Attribute(
            get: fn () => $this->email,
        );
    }

    public function statusBadge(): Attribute {
        return new Attribute(
            get: fn () => $this->badgeData(),
        );
    }

    public function badgeData() {
        $html = '';
        if ($this->status == Status::TICKET_OPEN) {
            $html = '<span class="badge badge--success">' . trans("Open") . '</span>';
        } elseif ($this->status == Status::TICKET_ANSWER) {
            $html = '<span class="badge badge--primary">' . trans("Answered") . '</span>';
        } elseif ($this->status == Status::TICKET_REPLY) {
            $html = '<span class="badge badge--warning">' . trans("Customer Reply") . '</span>';
        } elseif ($this->status == Status::TICKET_CLOSE) {
            $html = '<span class="badge badge--dark">' . trans("Closed") . '</span>';
        }
        return $html;
    }

    public function user() {
        return $this->belongsTo(User::class);
    }

    public function supportMessage() {
        return $this->hasMany(SupportMessage::class);
    }
}

Zerion Mini Shell 1.0