
PK 
| ADDRLIN : /home/questend/public_html/domains/evami.in/app/ |
| Current File : /home/questend/public_html/domains/evami.in/app/Pincode.php |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Pincode extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'pincodes';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'vender_id','pincode','district','city_id','city','state_id','state','country_id','country'
];
}

