* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ namespace App\Http\Controllers\Staff; use App\Http\Controllers\Controller; use App\Models\FailedLoginAttempt; class AuthenticationController extends Controller { /** * Authentications Log. * * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View */ public function index() { $attempts = FailedLoginAttempt::latest()->paginate(25); return view('Staff.authentication.index', ['attempts' => $attempts]); } }