• File: ProductItemImage.php
  • Full Path: /var/www/paytekchalenge/app/ProductItemImage.php
  • Date Modified: 07/19/2022 7:23 PM
  • File size: 299 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class ProductItemImage extends Model
{
    protected $fillable = [
      'image', 'product_item_id', 'description', 'status'
    ];

    public function stock(){ 
      return $this->belongsTo('App\ProductItem');
  }
}