Revize 609126cb
Přidáno uživatelem Jiří Noháč před téměř 5 roky(ů)
app/Http/Controllers/Auth/RegisterController.php | ||
---|---|---|
6 | 6 |
use App\Mail\RegisterMail; |
7 | 7 |
use App\Providers\RouteServiceProvider; |
8 | 8 |
use App\User; |
9 |
use Illuminate\Routing\UrlGenerator; |
|
9 | 10 |
use Illuminate\Foundation\Auth\RegistersUsers; |
10 | 11 |
use Illuminate\Support\Facades\Hash; |
11 | 12 |
use Illuminate\Support\Facades\Mail; |
... | ... | |
70 | 71 |
$vowels = array("/", "\\"); |
71 | 72 |
$stringHModified = str_replace($vowels, "", $stringH); |
72 | 73 |
|
73 |
Mail::to($data['email'])->send(new RegisterMail("http://localhost/verify/". $stringHModified)); |
|
74 |
//Mail::to($data['email'])->send(new RegisterMail("http://localhost/verify/". $stringHModified)); |
|
75 |
Mail::to($data['email'])->send(new RegisterMail(url("/verify/") . "/" . $stringHModified));//http://localhost/register/verify/.. |
|
74 | 76 |
|
75 | 77 |
return User::create([ |
76 | 78 |
'name' => $data['name'], |
Také k dispozici: Unified diff
Uprava sjednoceni templatu pro "Artefacts"
Uprava a sjednoceni vsech stranek (vyjma charts) na stejny design zobrazeni artefaktu podle 'books.blade'. Mezi upravene stranky patri: artefact, category, categories, favartefacts.