1
0
mirror of https://github.com/brunofontes/shareit.git synced 2025-04-15 16:40:54 +00:00
shareit/app/Product.php

12 lines
150 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
protected $fillable = ['adminID', 'name'];
//
}