%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/shaban/duassis/api/app/Models/
Upload File :
Create Path :
Current File : //var/www/html/shaban/duassis/api/app/Models/Country.php

<?php

namespace App\Models;

use App\Traits\Cacheable;
use Spatie\Translatable\HasTranslations;

/**
 * @property integer id
 * @property string slug
 * @property string name
 */
class Country extends BaseModel
{
    use HasTranslations, Cacheable;

    public $translatable = [
        'name',
    ];


    protected $fillable = [
        'slug',
        'name',
    ];

    protected $casts = [
        'id'   => 'integer',
        'slug' => 'string',
        'name' => 'string',
    ];

}

Zerion Mini Shell 1.0