c3lf-system-3/app/Item.php

66 lines
1.8 KiB
PHP
Raw Normal View History

2019-11-15 21:26:54 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
2019-11-28 03:52:53 +00:00
use Illuminate\Database\Eloquent\SoftDeletes;
2019-11-15 21:26:54 +00:00
class Item extends Model
{
2019-11-28 03:52:53 +00:00
use SoftDeletes;
2019-11-15 21:26:54 +00:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
2019-12-28 03:31:13 +00:00
'iid', 'item_uid', 'description', 'wann', 'wo', 'eid', 'cid', 'returned_at'
2019-11-15 21:26:54 +00:00
];
2019-12-15 17:06:02 +00:00
protected $primaryKey = 'iid';
2019-11-15 21:26:54 +00:00
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
2019-12-28 03:31:13 +00:00
protected $hidden = ['created_at','updated_at', 'deleted_at', 'returned_at', 'eid', 'iid', 'wann', 'wo'];
2019-12-01 17:30:25 +00:00
2019-12-28 03:31:13 +00:00
public static function restored($callback)
{
}
2020-01-18 19:53:46 +00:00
public static function create(array $attributes = [])
{
$uid = static::query()->where('eid',$attributes['eid'])->max('item_uid') + 1;
$attributes['item_uid'] = $uid;
static::query()->create($attributes);
return Item::find($uid);
}
protected static function extended($columns=Array()){
return Item::whereNull('returned_at')
->join('containers','items.cid','=','containers.cid')
->leftJoin('currentfiles','items.iid','=','currentfiles.iid');
}
static function byEvent($eid){
return Item::extended()->where('eid','=',$eid)
->select('items.*','currentfiles.hash as file', 'containers.name as box');
}
static function all($columns=Array()){
return Item::extended($columns)
->select('items.*','currentfiles.hash as file', 'containers.name as box')
->get();
}
static function find($id){
return Item::extended()
->select('items.*','currentfiles.hash as file', 'containers.name as box')
->where('items.iid', '=', $id)->first();
}
2019-11-28 03:52:53 +00:00
}