Skip to content

Instantly share code, notes, and snippets.

@stephenjude
Last active June 3, 2018 22:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephenjude/f35f73a237f3f49d16b42d6c393962bc to your computer and use it in GitHub Desktop.
Save stephenjude/f35f73a237f3f49d16b42d6c393962bc to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'product_name', 'product_description',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment