laravel login and register code example
Example 1: laravel check auth
use Illuminate\Support\Facades\Auth;
if (Auth::check()) {
// The user is logged in...
}
Example 2: laravel auth
//namespace
use Illuminate\Support\Facades\Auth;
Example 3: login with laravel
php artisan make:auth
Example 4: login with laravel
html { height: 100%; }
body {
min-height:100%;
position:relative;
padding-bottom:[footer-height]
}
.footer {
position: absolute;
left: 0 ; right: 0; bottom: 0;
height:[footer-height]
}