This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Class Auth | |
* Dirty hack used to avoid error within corcel | |
*/ | |
class Auth { | |
public static function provider($name, $callback){ | |
return false; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document.vhr).submit(function (e) { | |
$vin = $(this).find('input[name="decodeVIN"]'); | |
if (!$vin.val() || $vin.val().length <= 10) { | |
$('.digits-error').show(); | |
$('.triangle-border').hide(); | |
return false; | |
} | |
else { | |
e.preventDefault(); | |
$('.miniBox ul:eq( 0 )').after('<div class="loader"></div>'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers\Auth; | |
use Illuminate\Http\Request; | |
use Illuminate\Routing\Controller; | |
use Illuminate\Foundation\Auth\VerifiesEmails; | |
class VerificationController extends Controller | |
{ |
NewerOlder