forked from projects/thebadspace
ba79c9924c
Added some controllers and template pages to test connection with the db and begin the process of porting over functionality to this version. Also made some minor tweaks to formatting configs and updated a color in the css
15 lines
334 B
PHP
15 lines
334 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Location extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = "location";
|
|
protected $fillable = ["uuid", "name", "url", "description", "images", "active", "rating", "added_by", "tags"];
|
|
}
|