Skip to content

Instantly share code, notes, and snippets.

@cwicaksono
Created March 12, 2020 10:58
Show Gist options
  • Save cwicaksono/77160510fb071e907ce7a2dd219f82aa to your computer and use it in GitHub Desktop.
Save cwicaksono/77160510fb071e907ce7a2dd219f82aa to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Produk extends Model
{
protected $fillable = [
'name', 'detail'
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment