thebadspace/app/Models/Location.php
Ro e35dff591f
Started CSS and Layout upgrades
Functionality is coming along at a good pace, so it was time to start
adjusting the templates and styles to the new layout.

Responsive will come after all of the pages have been updated.
2023-08-17 15:14:01 -07:00

26 lines
541 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Location extends Model
{
use HasFactory;
/**
* The table associated with the model.
*
* @var string
*/
protected $table = "location";
protected $primaryKey = 'id';
public $incrementing = true;
protected $fillable = [
"uuid",
"name",
"url", "description", "images", "active", "rating", "added_by", "tags", "created_at", "updated_at"];
}