Skip to content

Instantly share code, notes, and snippets.

@metelidrissi
Created April 2, 2024 00:56
Show Gist options
  • Save metelidrissi/b73b3e8fd608ca6e7603b740b4e5b641 to your computer and use it in GitHub Desktop.
Save metelidrissi/b73b3e8fd608ca6e7603b740b4e5b641 to your computer and use it in GitHub Desktop.
Laravel 11 Starter Kit - Bootstrap 5 - CRUD - Model - Node.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Note extends Model
{
use HasFactory;
protected $fillable = ['title', 'description'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment