Your IP : 216.73.216.145


Current Path : /home/users/unlimited/www/egrocer.codeskitter.site/app/Jobs/
Upload File :
Current File : /home/users/unlimited/www/egrocer.codeskitter.site/app/Jobs/SendCartNotification.php

<?php

namespace App\Jobs;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;

class SendCartNotification implements ShouldQueue
{
    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;

    /**
     * Create a new job instance.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Execute the job.
     *
     * @return void
     */
    public function handle()
    {
        $nextSchedule = now()->addHours(2);
        $endTime = $this->job->created_at->addHours(24);

        if (now()->lessThan($endTime)) {
            SendCartNotification::dispatch($this->user)->delay($nextSchedule);
        }
    }
}