HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/app/Models/
Upload File :
Current File : /var/www/devs.lapieza.net/app/Models/ProductTax.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class ProductTax extends Model {

    protected $fillable = [
        'product_id',
        'tax_id',
        'tax',
        'tax_type'
    ];

    protected $attributes = [
        'tax_id' => 3,
        'tax' => 18,
        'tax_type' => 'percent'
    ];
}