Skip to content

Instantly share code, notes, and snippets.

@viniciusalonso
Created July 20, 2019 02:43
Show Gist options
  • Save viniciusalonso/5da430b9d5fc75bacc3b70ba816c27b7 to your computer and use it in GitHub Desktop.
Save viniciusalonso/5da430b9d5fc75bacc3b70ba816c27b7 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
protected $fillable => [
'name',
'price'
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment