for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace agoalofalife\postman\Models;
use Illuminate\Database\Eloquent\Model;
class Email extends Model
{
protected $fillable = ['theme', 'text'];
public function users()
return $this->belongsToMany(User::class);
}
public function tasks()
return $this->hasMany(SheduleEmail::class);