Refactor GroupResource to use a static property for navigation icon; add method documentation for name attribute in Group model.

This commit is contained in:
2025-08-31 18:51:46 +05:00
parent 3e58524af7
commit f9f4c476ce
20 changed files with 547 additions and 5 deletions

28
app/Models/Room.php Normal file
View File

@@ -0,0 +1,28 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class Room extends Model
{
use HasFactory;
/**
* @return array<string, string>
*/
protected function casts(): array
{
return [
'images' => 'array',
'wide' => 'boolean',
];
}
public function hotel(): BelongsTo
{
return $this->belongsTo(Hotel::class);
}
}