Skip to content

Instantly share code, notes, and snippets.

@tderick
Created July 27, 2022 13:55
Show Gist options
  • Save tderick/4734fbc3b4cc42e38eed95a1a1a68cc0 to your computer and use it in GitHub Desktop.
Save tderick/4734fbc3b4cc42e38eed95a1a1a68cc0 to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Contact extends Model
{
use HasFactory;
protected $fillable = [
'name',
'email',
'message'
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment