File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ @extends (' errors::minimal' )
2+
3+ @section (' title' , __ (' Unauthorized' ) )
4+ @section (' code' , ' 401' )
5+ @section (' message' , __ (' Unauthorized' ) )
Original file line number Diff line number Diff line change 1+ @extends (' errors::minimal' )
2+
3+ @section (' title' , __ (' Payment Required' ) )
4+ @section (' code' , ' 402' )
5+ @section (' message' , __ (' Payment Required' ) )
Original file line number Diff line number Diff line change 1+ @extends (' errors::minimal' )
2+
3+ @section (' title' , __ (' Forbidden' ) )
4+ @section (' code' , ' 403' )
5+ @section (' message' , __ ($exception -> getMessage () ?: ' Forbidden' ) )
Original file line number Diff line number Diff line change 1+ @php ($title = \App \Services \FrontendService:: getAppName () )
2+ @php ($desc = \App \Services \FrontendService:: getAppDescription () )
3+ @php ($favicon = \App \Services \FrontendService:: getAppFavicon () )
4+ <!DOCTYPE html>
5+ <html >
6+ <head >
7+ <meta charset =" utf-8" >
8+ <meta name =" viewport" content =" width=device-width, initial-scale=1.0" />
9+ <title >{{ $title } } </title >
10+ <link rel =" shortcut icon" type =" image/png" href =" {{ $favicon } }" />
11+ <meta name =" description" content =" {{ $desc } }" >
12+ <meta property =" og:title" content =" {{ $title } }" />
13+ <meta property =" og:description" content =" {{ $desc } }" />
14+ <meta property =" og:type" content =" website" />
15+ <meta name =" twitter:title" content =" {{ $title } }" />
16+ <meta name =" twitter:description" content =" {{ $desc } }" />
17+ @vite ([' resources/js/app.js' ] ){!! App \Services \FrontendService:: getCustomCss ();! !}
18+
19+ <script type =" text/javascript" >
20+ window .appConfig = {!! \App \Services \FrontendService:: getAppData () ! !} ;
21+ window ._navi = {!! App \Services \PageService:: getActiveSideLinks ();! !} ;
22+ {!! App \Services \FrontendService:: getCaptchaData ();! !}
23+ </script >
24+ </head >
25+
26+ <body class =" bg-white dark:bg-slate-950" >
27+ <main id =" app" >
28+ <router-view ></router-view >
29+ </main >
30+ </body >
31+ </html >
Original file line number Diff line number Diff line change 1+ @extends (' errors::minimal' )
2+
3+ @section (' title' , __ (' Page Expired' ) )
4+ @section (' code' , ' 419' )
5+ @section (' message' , __ (' Page Expired' ) )
Original file line number Diff line number Diff line change 1+ @extends (' errors::minimal' )
2+
3+ @section (' title' , __ (' Too Many Requests' ) )
4+ @section (' code' , ' 429' )
5+ @section (' message' , __ (' Too Many Requests' ) )
Original file line number Diff line number Diff line change 1+ @extends (' errors::minimal' )
2+
3+ @section (' title' , __ (' Server Error' ) )
4+ @section (' code' , ' 500' )
5+ @section (' message' , __ (' Server Error' ) )
Original file line number Diff line number Diff line change 1+ @extends (' errors::minimal' )
2+
3+ @section (' title' , __ (' Service Unavailable' ) )
4+ @section (' code' , ' 503' )
5+ @section (' message' , __ (' Service Unavailable' ) )
You can’t perform that action at this time.
0 commit comments