Refactor GroupResource to use a static property for navigation icon; add method documentation for name attribute in Group model.
This commit is contained in:
@@ -28,6 +28,11 @@ class Group extends Model
|
||||
'end_date' => 'date',
|
||||
];
|
||||
|
||||
/**
|
||||
* Get the name of the group
|
||||
*
|
||||
* @return Attribute
|
||||
* */
|
||||
public function name(): Attribute
|
||||
{
|
||||
return Attribute::make(
|
||||
|
||||
27
app/Models/Hotel.php
Normal file
27
app/Models/Hotel.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||
|
||||
class Hotel extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
/**
|
||||
* @return array<string, string>
|
||||
*/
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'images' => 'array',
|
||||
];
|
||||
}
|
||||
|
||||
public function rooms(): HasMany
|
||||
{
|
||||
return $this->hasMany(Room::class);
|
||||
}
|
||||
}
|
||||
28
app/Models/Room.php
Normal file
28
app/Models/Room.php
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user