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

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Color extends Model
{
    //
    protected $fillable = ['description','cody'];

    public $table = "colors";

    public function produtos(){
        return $this->hasMany('App\Models\Product','colors_id');// 854545426
    }
    
}