<?php

namespace App\Indexer\Admin;

use Fobia\Database\SphinxConnection\Eloquent\Model;

class ShopIndex extends Model
{
    protected $table = 'admin_shops_index';

    protected $casts = [
        'id'           => 'integer',
        'order_list'   => 'integer',
    ];

    /*public function area() {
        return $this->belongsTo(AreaIndex::class, 'area_id', 'id');
    }*/
}
