2016-09-15 19:58:27 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
2018-04-04 17:33:02 -07:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2016-09-15 19:58:27 -07:00
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class CheckoutRequest extends Model
|
|
|
|
{
|
2018-04-04 17:33:02 -07:00
|
|
|
use SoftDeletes;
|
2016-09-15 19:58:27 -07:00
|
|
|
protected $fillable = ['user_id'];
|
|
|
|
protected $table = 'checkout_requests';
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function requestingUser()
|
|
|
|
{
|
|
|
|
return $this->user()->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function requestedItem()
|
|
|
|
{
|
|
|
|
return $this->morphTo('requestable');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function itemRequested() // Workaround for laravel polymorphic issue that's not being solved :(
|
|
|
|
{
|
|
|
|
return $this->requestedItem()->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function itemType()
|
|
|
|
{
|
|
|
|
return snake_case(class_basename($this->requestable_type));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function location()
|
|
|
|
{
|
|
|
|
return $this->itemRequested()->location;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function name()
|
|
|
|
{
|
|
|
|
if ($this->itemType() == "asset") {
|
2016-12-23 17:52:00 -08:00
|
|
|
return $this->itemRequested()->present()->name();
|
2016-09-15 19:58:27 -07:00
|
|
|
}
|
|
|
|
return $this->itemRequested()->name;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|