created outline for payment reminder

This commit is contained in:
2020-06-01 03:07:17 -05:00
parent 6853ae9881
commit aec0671b4a

View File

@@ -2,11 +2,23 @@
namespace App\Jobs\Commands\RentalMoons; namespace App\Jobs\Commands\RentalMoons;
//Internal Library
use Illuminate\Bus\Queueable; use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels; use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Foundation\Bus\Dispatchable;
use Log;
use Carbon\Carbon;
//Library
//Jobs
use App\Jobs\ProcessSendEvveMailJob;
//Models
use App\Models\MoonRentals\AllianceRentalMoon;
use App\Models\Mail\SentMail;
class SendMoonRentalPaymentReminderJob implements ShouldQueue class SendMoonRentalPaymentReminderJob implements ShouldQueue
{ {