1: <?php
2:
3: namespace App;
4:
5: use Illuminate\Database\Eloquent\Model;
6:
7: class Taxibase extends Model
8: {
9: /**
10: * The database table used by the model.
11: *
12: * @var string
13: */
14: protected $table = 'taxibase';
15:
16:
17: /**
18: * The attributes that are mass assignable.
19: *
20: * @var array
21: */
22: protected $fillable = [
23: 'latitude',
24: 'longtitude',
25: 'base_name'
26: ];
27:
28: public $timestamps = false;
29: }
30: