Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/
Upload File :
Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/HowitWorks.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Mews\Purifier\Casts\CleanHtml;

class HowitWorks extends Model
{
    protected $table = 'howitworks';

    protected $guarded = [];

    protected $casts = [
        'title' => CleanHtml::class,
    ];
}