Ajout du formulaire contactez-nous | Controller/template_mail

This commit is contained in:
Nico B
2020-02-12 11:51:15 +01:00
parent 862299aca9
commit d7d77cc47b
12 changed files with 270 additions and 14 deletions

11
app/ContactUS.php Normal file
View File

@ -0,0 +1,11 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ContactUS extends Model
{
public $table = 'contactus';
public $fillable = ['name', 'email', 'message'];
}