Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Created May 26, 2020 02:16
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 blogcacanid/284207eefde9e764040406a193bd8130 to your computer and use it in GitHub Desktop.
Save blogcacanid/284207eefde9e764040406a193bd8130 to your computer and use it in GitHub Desktop.
Product.php Back End Product Laravel 7
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
protected $fillable = [
'product_name', 'product_price'
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment