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

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Compra extends Model
{
    //
    protected $fillable = ['codigo_compra', 'quantTotal', 'precoTotal', 'meios_pagamentos_id', 'statuses_id'];

    public $table = "compras";
}