mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
26 lines
479 B
PHP
26 lines
479 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Item extends Model
|
|
{
|
|
public static function explodeItems($items)
|
|
{
|
|
$array_items = explode("-",$items);
|
|
$col_items = collect();
|
|
|
|
foreach ($array_items as $item) {
|
|
$col_items->push(Item::find($item));
|
|
}
|
|
$col_items->forget(0);
|
|
return $col_items;
|
|
}
|
|
|
|
public function bookings()
|
|
{
|
|
return $this->hasMany('App\Booking');
|
|
}
|
|
}
|