| 1 | <?php |
||
| 22 | class UrlMapper extends Model |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var bool |
||
| 26 | */ |
||
| 27 | public $timestamps = false; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | protected $table = 'urls'; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var array |
||
| 36 | */ |
||
| 37 | protected $fillable = ['url']; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 41 | */ |
||
| 42 | public function message() |
||
| 46 | } |