63 lines
1.2 KiB
PHP
63 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class ClubFacility extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'club_facilities';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
'tenant_id',
|
|
'name',
|
|
'photo',
|
|
'address',
|
|
'gps_lat',
|
|
'gps_long',
|
|
'is_available',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
protected $casts = [
|
|
'gps_lat' => 'decimal:7',
|
|
'gps_long' => 'decimal:7',
|
|
'is_available' => 'boolean',
|
|
];
|
|
|
|
/**
|
|
* Get the club that owns the facility.
|
|
*/
|
|
public function tenant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Tenant::class);
|
|
}
|
|
|
|
/**
|
|
* Get the activities for the facility.
|
|
*/
|
|
public function activities(): HasMany
|
|
{
|
|
return $this->hasMany(ClubActivity::class, 'facility_id');
|
|
}
|
|
}
|