News letter subscription added

This commit is contained in:
2020-08-22 19:54:40 +05:00
parent 215c14eb14
commit aac9f030cb
7 changed files with 136 additions and 14 deletions

10
app/NewsLetter.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class NewsLetter extends Model
{
protected $guarded = [];
}