updating login controller

This commit is contained in:
2019-11-16 22:20:01 -06:00
parent 260a5d5890
commit 2a56300470
5 changed files with 34 additions and 168 deletions

View File

@@ -1,27 +0,0 @@
<?php
namespace App\Models\Jobs;
/**
* This model is an example of how to create a model for a job for redis.
* Note the Model requires no table to be defined as the job doesn't use a table,
* but it uses the redis queue for the job.
*/
use Illuminate\Database\Eloquent\Model;
class JobSendEveMail extends Model
{
//Timestamps
public $timestamps = true;
protected $fillable = [
'sender',
'recipient',
'recipient_type',
'subject',
'body',
'created_at',
'updated_at',
];
}