Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| StockTransferItem | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| transfer | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Models; |
| 4 | |
| 5 | use Illuminate\Database\Eloquent\Model; |
| 6 | |
| 7 | class StockTransferItem extends Model |
| 8 | { |
| 9 | protected $fillable = ['stock_transfer_id', 'product_id', 'variation_id', 'quantity']; |
| 10 | |
| 11 | public function transfer() |
| 12 | { |
| 13 | return $this->belongsTo(StockTransfer::class, 'stock_transfer_id'); |
| 14 | } |
| 15 | } |