14 lines
366 B
PHP
14 lines
366 B
PHP
<?php
|
|
|
|
namespace App\Component\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ExchangeDeleted extends Model {
|
|
protected $table = 'exchange_deleted';
|
|
|
|
public function deletedActions() {
|
|
return $this->hasMany('App\Component\Models\ExchangeActions', 'order_position', 'item_id')
|
|
->where('exchange_actions.action_type', '=', 5);
|
|
}
|
|
} |