<?php namespace App\Model; use Illuminate\Database\Eloquent\Model; class OrderShippingModel extends Model { protected $connection = 'order'; protected $table = 'lie_order_shipping'; protected $primaryKey = 'order_shipping_id'; public $timestamps = false; }