Created
April 2, 2024 00:56
-
-
Save metelidrissi/b73b3e8fd608ca6e7603b740b4e5b641 to your computer and use it in GitHub Desktop.
Laravel 11 Starter Kit - Bootstrap 5 - CRUD - Model - Node.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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