/home/awneajlw/.trash/app/Models/Cities.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Cities extends Model
{
    protected $table = 'cities';
    
    protected $fillable = [
        'name'
    ];

    public $timestamps = false;
}