Skip to content

Instantly share code, notes, and snippets.

View BenmrChen's full-sized avatar

BenmrChen

View GitHub Profile
<?php
namespace App\Http\Controllers;
use App\Jobs\SendSignUpMailJob;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Validator;
use Hash;
use App\Shop\Entity\User;
<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Mail;