Business.php 725 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2018/1/17
 * Time: 10:38
 */

namespace App\Modules\Models\Business;

use App\Modules\Models\Business\Traits\Attribute\BusinessAttribute;
use App\Modules\Models\Business\Traits\Relationship\BusinessRelationship;

use Illuminate\Foundation\Auth\User as Authenticatable;

class Business    extends  Authenticatable
{

    use BusinessAttribute, BusinessRelationship;


    protected $table = 'business';


    protected $fillable = ['business_name', 'phone','selected_spot_id'];

    /**
     * Get the relationships for the entity.
     *
     * @return array
     */

    /**
     * Get the relationships for the entity.
     *
     * @return array
     */

}