Your ROOT_URL in app.ini is http://159.89.207.79:3000/ but you are visiting http://9.cron.my.id:3000/mahesh/laravel-backpack/blame/branch/main/resources/views/errors/429.blade.php You should set ROOT_URL correctly, otherwise the web may not work correctly.

17 lines
456 B

2 years ago
@extends('errors.layout')
@php
$error_number = 429;
@endphp
@section('title')
Too many requests.
@endsection
@section('description')
@php
$default_error_message = "Please <a href='javascript:history.back()''>go back</a> and try again, or return to <a href='".url('')."'>our homepage</a>.";
@endphp
{!! isset($exception)? ($exception->getMessage()?e($exception->getMessage()):$default_error_message): $default_error_message !!}
@endsection