Skip to content

Instantly share code, notes, and snippets.

@ualmtorres
Created September 24, 2022 07:25
Show Gist options
  • Save ualmtorres/0df1575c095330736bb519f2eb874173 to your computer and use it in GitHub Desktop.
Save ualmtorres/0df1575c095330736bb519f2eb874173 to your computer and use it in GitHub Desktop.
Laravel Product Model
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
use HasFactory;
protected $guarded = ['id'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment