<?php

namespace App\Indexer;

use Fobia\Database\SphinxConnection\Eloquent\Model;

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

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

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