Viewing: NearByPlace.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class NearByPlace extends Model { protected $hidden = []; protected $table = 'near_by_places'; protected $fillable = ['title', 'is_active']; }
Return