update before thirdparty integration
@@ -30,7 +30,7 @@ return [
|
|||||||
| By default DOMPDF_FONT_DIR is set to storage_path('fonts/').
|
| By default DOMPDF_FONT_DIR is set to storage_path('fonts/').
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'font_dir' => env('DOMPDF_FONT_DIR', storage_path('fonts/')),
|
'font_dir' => storage_path('fonts/'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
@@ -40,7 +40,7 @@ return [
|
|||||||
| By default DOMPDF_FONT_CACHE is set to storage_path('fonts/').
|
| By default DOMPDF_FONT_CACHE is set to storage_path('fonts/').
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'font_cache' => env('DOMPDF_FONT_CACHE', storage_path('fonts/')),
|
'font_cache' => storage_path('fonts/'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -11,9 +11,34 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'AbrilFatface';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: url('{{ storage_path("fonts/AbrilFatface-Regular.ttf") }}') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Montserrat';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: url('{{ storage_path("fonts/Montserrat-Regular.ttf") }}') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Montserrat';
|
||||||
|
/* font-style: normal; */
|
||||||
|
font-weight: 700;
|
||||||
|
src: url('{{ storage_path("fonts/Montserrat-Bold.ttf") }}') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Montserrat', sans-serif;
|
font-family: Montserrat;
|
||||||
color: #333;
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
@@ -29,72 +54,72 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 8px;
|
||||||
border-bottom: 1px solid #1a1a1a;
|
border-bottom: 1px solid #1a1a1a;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
|
gap: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.company-info {
|
||||||
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.company-info h1 {
|
.company-info h1 {
|
||||||
font-family: Abril Fatface;
|
font-family: AbrilFatface, Georgia, serif;
|
||||||
font-size: 36px;
|
|
||||||
color: #1a1a1a;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
font-size: 36px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.company-details h2 {
|
||||||
|
font-family: AbrilFatface;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 20px;
|
||||||
|
/* margin-bottom: 10px; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.company-details {
|
.company-details {
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
color: #666;
|
line-height: 1.2;
|
||||||
line-height: 1.5;
|
}
|
||||||
|
|
||||||
|
.invoice-details h2 {
|
||||||
|
font-family: AbrilFatface;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 20px;
|
||||||
|
/* margin-bottom: 10px; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.invoice-details {
|
.invoice-details {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
/* line-height: 1.5; */
|
flex-shrink: 0;
|
||||||
}
|
|
||||||
|
|
||||||
.invoice-details h2 {
|
|
||||||
font-size: 28px;
|
|
||||||
color: #1a1a1a;
|
|
||||||
font-weight: normal;
|
|
||||||
/* margin-bottom: 20px; */
|
|
||||||
font-family: 'AbrilFatface', Georgia, serif;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.detail-row {
|
.detail-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
/* margin-bottom: 8px; */
|
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detail-row strong {
|
.detail-row strong {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
color: #666;
|
|
||||||
width: 120px;
|
width: 120px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detail-row span {
|
.detail-row span {
|
||||||
color: #1a1a1a;
|
|
||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-title {
|
.customer-info h3 {
|
||||||
|
font-family: AbrilFatface, Georgia, serif;
|
||||||
|
font-weight: normal;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: 700;
|
/* text-transform: uppercase; */
|
||||||
text-transform: uppercase;
|
/* letter-spacing: 0.5px; */
|
||||||
letter-spacing: 1px;
|
|
||||||
color: #666;
|
|
||||||
margin-top: 20px;
|
|
||||||
/* margin-bottom: 20px; */
|
|
||||||
/* border-bottom: 1px solid #e0e0e0; */
|
|
||||||
padding-bottom: 12px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.customer-info {
|
.customer-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
/* gap: 80px; */
|
|
||||||
/* margin-bottom: 40px; */
|
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,63 +127,59 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.customer-info h3 {
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 700;
|
|
||||||
text-transform: uppercase;
|
|
||||||
letter-spacing: 0.5px;
|
|
||||||
color: #666;
|
|
||||||
/* margin-bottom: 8px; */
|
|
||||||
}
|
|
||||||
|
|
||||||
.customer-info p {
|
.customer-info p {
|
||||||
color: #1a1a1a;
|
line-height: 1.2;
|
||||||
/* margin-bottom: 4px; */
|
}
|
||||||
line-height: 1.5;
|
|
||||||
|
.section-title {
|
||||||
|
font-family: AbrilFatface, Georgia, serif;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 20px;
|
||||||
|
/* margin-top: 20px; */
|
||||||
|
padding-bottom: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
margin-bottom: 40px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f3f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: 700;
|
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 0.5px;
|
letter-spacing: 0.5px;
|
||||||
color: #666;
|
padding: 2px 16px;
|
||||||
padding: 12px 16px;
|
|
||||||
text-align: left;
|
text-align: left;
|
||||||
/* border: 1px solid #e0e0e0; */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
padding: 10px 10px;
|
padding: 0px 10px;
|
||||||
/* border: 1px solid #e0e0e0; */
|
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: #1a1a1a;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tr:nth-child(even) {
|
tr:nth-child(even) {
|
||||||
background-color: #fafafa;
|
background-color: #f5f3f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-name {
|
.item-name {
|
||||||
font-weight: 500;
|
font-family: AbrilFatface, Georgia, serif;
|
||||||
|
font-weight: normal;
|
||||||
|
padding: 0px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-label {
|
.item-label {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: #999;
|
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 0.5px;
|
letter-spacing: 0.5px;
|
||||||
/* margin-top: 2px; */
|
padding: 0px 20px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.qty {
|
.qty {
|
||||||
@@ -170,70 +191,40 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.totals-section {
|
.totals-section {
|
||||||
margin-bottom: 40px;
|
/* margin-bottom: 40px; */
|
||||||
|
background-color: #e8dcd8;
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.totals-box {
|
.totals-box {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
width: 350px;
|
width: 350px;
|
||||||
|
padding: 0px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.total-row {
|
.total-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 12px 16px;
|
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
padding: 0px 16px;
|
||||||
|
|
||||||
.total-row strong {
|
|
||||||
color: #1a1a1a;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-row span {
|
|
||||||
color: #666;
|
|
||||||
text-align: right;
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-row.subtotal strong {
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-row.shipping strong {
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.total-row.grand-total {
|
.total-row.grand-total {
|
||||||
/* background-color: #f5f5f5; */
|
font-family: AbrilFatface, Georgia, serif;
|
||||||
/* border: 1px solid #e0e0e0; */
|
font-size: 30px;
|
||||||
font-size: 15px;
|
padding: 0px 16px;
|
||||||
font-weight: 700;
|
|
||||||
padding: 12px 16px;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.total-row.grand-total strong {
|
|
||||||
color: #1a1a1a;
|
|
||||||
font-family: 'AbrilFatface', Georgia, serif;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-row.grand-total span {
|
|
||||||
color: #1a1a1a;
|
|
||||||
font-size: 16px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-section {
|
.footer-section {
|
||||||
margin-top: 60px;
|
margin-top: 60px;
|
||||||
padding-top: 30px;
|
/* padding-top: 30px; */
|
||||||
border-top: 1px solid #e0e0e0;
|
/* border-top: 1px solid #e0e0e0; */
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #999;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thank-you {
|
.thank-you {
|
||||||
color: #666;
|
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -249,9 +240,9 @@
|
|||||||
<div class="invoice-header">
|
<div class="invoice-header">
|
||||||
<div class="company-info">
|
<div class="company-info">
|
||||||
|
|
||||||
<h1>INVOICE</h1>
|
<h1>Invoice</h1>
|
||||||
<div class="company-details">
|
<div class="company-details">
|
||||||
<h2>ADDITIONAL DESIGN</h2>
|
<h2>Additional Design</h2>
|
||||||
<p>registered trading name of</p>
|
<p>registered trading name of</p>
|
||||||
<p>TWO TALES & CO. (PTY) LTD</p>
|
<p>TWO TALES & CO. (PTY) LTD</p>
|
||||||
<p>REG: 2014/260746/07</p>
|
<p>REG: 2014/260746/07</p>
|
||||||
@@ -261,7 +252,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="invoice-details">
|
<div class="invoice-details">
|
||||||
<h3>#{{ $order->order_number }}</h3>
|
<h2>#{{ $order->order_number }}</h2>
|
||||||
<div class="detail-row">
|
<div class="detail-row">
|
||||||
<strong>Date:</strong>
|
<strong>Date:</strong>
|
||||||
<span>{{ $order->created_at->format('d M Y') }}</span>
|
<span>{{ $order->created_at->format('d M Y') }}</span>
|
||||||
@@ -280,20 +271,16 @@
|
|||||||
<!-- Customer Info -->
|
<!-- Customer Info -->
|
||||||
<div class="customer-info">
|
<div class="customer-info">
|
||||||
<div>
|
<div>
|
||||||
<h3>Bill To</h3>
|
<h3>Customer Info:</h3>
|
||||||
<p>{{ $order->customer_name }}</p>
|
<p>{{ $order->customer_name }}</p>
|
||||||
<p>{{ $order->customer_email }}</p>
|
<p>{{ $order->customer_email }}</p>
|
||||||
<p>{{ $order->customer_phone }}</p>
|
<p>{{ $order->customer_phone }}</p>
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h3>Ship To</h3>
|
|
||||||
<p>{{ $order->shipping_address }}</p>
|
<p>{{ $order->shipping_address }}</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Items Table -->
|
<!-- Items Table -->
|
||||||
<div class="section-title">Order Items</div>
|
<div class="section-title">Order Items:</div>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -342,13 +329,13 @@
|
|||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
<div class="total-row grand-total">
|
<div class="total-row grand-total">
|
||||||
<strong>Total</strong>
|
Total
|
||||||
<span>R {{ number_format($order->total, 2) }}</span>
|
<span>R {{ number_format($order->total, 2) }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div style="text-align: center;">
|
<div style="text-align: center; background-color: #000; color:#fff; border-radius: 60px; font-size: 20px; margin-top: 20px; padding-bottom: 10px; width: 200px; margin-left: auto; margin-right: auto;">
|
||||||
<strong>PAID VIA YOCO</strong>
|
<strong>PAID VIA YOCO</strong>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,424 @@
|
|||||||
|
StartFontMetrics 4.1
|
||||||
|
Notice Converted by PHP-font-lib
|
||||||
|
Comment https://github.com/dompdf/php-font-lib
|
||||||
|
EncodingScheme FontSpecific
|
||||||
|
Copyright Copyright (c) 2011, Copyright (c) 2011, TypeTogether (www.type-together.com), with Reserved Font Names "Abril" and "Abril Fatface"
|
||||||
|
FontName Abril Fatface
|
||||||
|
FontSubfamily Regular
|
||||||
|
UniqueID TypeTogether: Abril Fatface Regular: 2011
|
||||||
|
FullName Abril Fatface
|
||||||
|
Version Version 1.001
|
||||||
|
PostScriptName AbrilFatface-Regular
|
||||||
|
Trademark Abril Fatface is a trademark of TypeTogether.
|
||||||
|
Manufacturer TypeTogether
|
||||||
|
Designer Veronika Burian, Jos Scaglione
|
||||||
|
FontVendorURL www.type-together.com
|
||||||
|
FontDesignerURL www.type-together.com
|
||||||
|
LicenseDescription This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL
|
||||||
|
LicenseURL http://scripts.sil.org/OFL
|
||||||
|
Weight Medium
|
||||||
|
ItalicAngle 0
|
||||||
|
IsFixedPitch false
|
||||||
|
UnderlineThickness 50
|
||||||
|
UnderlinePosition -75
|
||||||
|
FontHeightOffset 0
|
||||||
|
Ascender 1058
|
||||||
|
Descender -291
|
||||||
|
FontBBox -181 -291 1131 1058
|
||||||
|
StartCharMetrics 407
|
||||||
|
U 32 ; WX 180 ; N space ; G 3
|
||||||
|
U 33 ; WX 377 ; N exclam ; G 4
|
||||||
|
U 34 ; WX 334 ; N quotedbl ; G 5
|
||||||
|
U 35 ; WX 608 ; N numbersign ; G 6
|
||||||
|
U 36 ; WX 565 ; N dollar ; G 7
|
||||||
|
U 37 ; WX 768 ; N percent ; G 8
|
||||||
|
U 38 ; WX 822 ; N ampersand ; G 9
|
||||||
|
U 39 ; WX 186 ; N quotesingle ; G 10
|
||||||
|
U 40 ; WX 351 ; N parenleft ; G 11
|
||||||
|
U 41 ; WX 351 ; N parenright ; G 12
|
||||||
|
U 42 ; WX 529 ; N asterisk ; G 13
|
||||||
|
U 43 ; WX 530 ; N plus ; G 14
|
||||||
|
U 44 ; WX 262 ; N comma ; G 15
|
||||||
|
U 45 ; WX 352 ; N hyphen ; G 16
|
||||||
|
U 46 ; WX 265 ; N period ; G 17
|
||||||
|
U 47 ; WX 351 ; N slash ; G 18
|
||||||
|
U 48 ; WX 664 ; N zero ; G 19
|
||||||
|
U 49 ; WX 425 ; N one ; G 20
|
||||||
|
U 50 ; WX 552 ; N two ; G 21
|
||||||
|
U 51 ; WX 573 ; N three ; G 22
|
||||||
|
U 52 ; WX 603 ; N four ; G 23
|
||||||
|
U 53 ; WX 540 ; N five ; G 24
|
||||||
|
U 54 ; WX 616 ; N six ; G 25
|
||||||
|
U 55 ; WX 510 ; N seven ; G 26
|
||||||
|
U 56 ; WX 611 ; N eight ; G 27
|
||||||
|
U 57 ; WX 616 ; N nine ; G 28
|
||||||
|
U 58 ; WX 265 ; N colon ; G 29
|
||||||
|
U 59 ; WX 262 ; N semicolon ; G 30
|
||||||
|
U 60 ; WX 530 ; N less ; G 31
|
||||||
|
U 61 ; WX 530 ; N equal ; G 32
|
||||||
|
U 62 ; WX 530 ; N greater ; G 33
|
||||||
|
U 63 ; WX 580 ; N question ; G 34
|
||||||
|
U 64 ; WX 879 ; N at ; G 35
|
||||||
|
U 65 ; WX 694 ; N A ; G 36
|
||||||
|
U 66 ; WX 659 ; N B ; G 37
|
||||||
|
U 67 ; WX 690 ; N C ; G 38
|
||||||
|
U 68 ; WX 755 ; N D ; G 39
|
||||||
|
U 69 ; WX 624 ; N E ; G 40
|
||||||
|
U 70 ; WX 592 ; N F ; G 41
|
||||||
|
U 71 ; WX 723 ; N G ; G 42
|
||||||
|
U 72 ; WX 749 ; N H ; G 43
|
||||||
|
U 73 ; WX 355 ; N I ; G 44
|
||||||
|
U 74 ; WX 517 ; N J ; G 45
|
||||||
|
U 75 ; WX 734 ; N K ; G 46
|
||||||
|
U 76 ; WX 596 ; N L ; G 47
|
||||||
|
U 77 ; WX 840 ; N M ; G 48
|
||||||
|
U 78 ; WX 670 ; N N ; G 49
|
||||||
|
U 79 ; WX 748 ; N O ; G 50
|
||||||
|
U 80 ; WX 634 ; N P ; G 51
|
||||||
|
U 81 ; WX 748 ; N Q ; G 52
|
||||||
|
U 82 ; WX 716 ; N R ; G 53
|
||||||
|
U 83 ; WX 600 ; N S ; G 54
|
||||||
|
U 84 ; WX 683 ; N T ; G 55
|
||||||
|
U 85 ; WX 683 ; N U ; G 56
|
||||||
|
U 86 ; WX 685 ; N V ; G 57
|
||||||
|
U 87 ; WX 1015 ; N W ; G 58
|
||||||
|
U 88 ; WX 711 ; N X ; G 59
|
||||||
|
U 89 ; WX 641 ; N Y ; G 60
|
||||||
|
U 90 ; WX 612 ; N Z ; G 61
|
||||||
|
U 91 ; WX 329 ; N bracketleft ; G 62
|
||||||
|
U 92 ; WX 351 ; N backslash ; G 63
|
||||||
|
U 93 ; WX 328 ; N bracketright ; G 64
|
||||||
|
U 94 ; WX 560 ; N asciicircum ; G 65
|
||||||
|
U 95 ; WX 500 ; N underscore ; G 66
|
||||||
|
U 96 ; WX 500 ; N grave ; G 67
|
||||||
|
U 97 ; WX 549 ; N a ; G 68
|
||||||
|
U 98 ; WX 588 ; N b ; G 69
|
||||||
|
U 99 ; WX 483 ; N c ; G 70
|
||||||
|
U 100 ; WX 588 ; N d ; G 71
|
||||||
|
U 101 ; WX 516 ; N e ; G 72
|
||||||
|
U 102 ; WX 383 ; N f ; G 73
|
||||||
|
U 103 ; WX 522 ; N g ; G 74
|
||||||
|
U 104 ; WX 616 ; N h ; G 75
|
||||||
|
U 105 ; WX 317 ; N i ; G 76
|
||||||
|
U 106 ; WX 311 ; N j ; G 77
|
||||||
|
U 107 ; WX 620 ; N k ; G 78
|
||||||
|
U 108 ; WX 316 ; N l ; G 79
|
||||||
|
U 109 ; WX 888 ; N m ; G 80
|
||||||
|
U 110 ; WX 616 ; N n ; G 81
|
||||||
|
U 111 ; WX 543 ; N o ; G 82
|
||||||
|
U 112 ; WX 588 ; N p ; G 83
|
||||||
|
U 113 ; WX 588 ; N q ; G 84
|
||||||
|
U 114 ; WX 495 ; N r ; G 85
|
||||||
|
U 115 ; WX 434 ; N s ; G 86
|
||||||
|
U 116 ; WX 394 ; N t ; G 87
|
||||||
|
U 117 ; WX 605 ; N u ; G 88
|
||||||
|
U 118 ; WX 532 ; N v ; G 89
|
||||||
|
U 119 ; WX 834 ; N w ; G 90
|
||||||
|
U 120 ; WX 595 ; N x ; G 91
|
||||||
|
U 121 ; WX 532 ; N y ; G 92
|
||||||
|
U 122 ; WX 520 ; N z ; G 93
|
||||||
|
U 123 ; WX 377 ; N braceleft ; G 94
|
||||||
|
U 124 ; WX 319 ; N bar ; G 95
|
||||||
|
U 125 ; WX 377 ; N braceright ; G 96
|
||||||
|
U 126 ; WX 530 ; N asciitilde ; G 97
|
||||||
|
U 160 ; WX 180 ; N uni00A0 ; G 98
|
||||||
|
U 161 ; WX 377 ; N exclamdown ; G 99
|
||||||
|
U 162 ; WX 515 ; N cent ; G 100
|
||||||
|
U 163 ; WX 581 ; N sterling ; G 101
|
||||||
|
U 164 ; WX 530 ; N currency ; G 102
|
||||||
|
U 165 ; WX 609 ; N yen ; G 103
|
||||||
|
U 166 ; WX 319 ; N brokenbar ; G 104
|
||||||
|
U 167 ; WX 699 ; N section ; G 105
|
||||||
|
U 168 ; WX 500 ; N dieresis ; G 106
|
||||||
|
U 169 ; WX 781 ; N copyright ; G 107
|
||||||
|
U 170 ; WX 454 ; N ordfeminine ; G 108
|
||||||
|
U 171 ; WX 494 ; N guillemotleft ; G 109
|
||||||
|
U 172 ; WX 530 ; N logicalnot ; G 110
|
||||||
|
U 173 ; WX 340 ; N uni00AD ; G 111
|
||||||
|
U 174 ; WX 459 ; N registered ; G 112
|
||||||
|
U 175 ; WX 500 ; N macron ; G 113
|
||||||
|
U 176 ; WX 329 ; N degree ; G 114
|
||||||
|
U 177 ; WX 530 ; N plusminus ; G 115
|
||||||
|
U 178 ; WX 417 ; N twosuperior ; G 116
|
||||||
|
U 179 ; WX 422 ; N threesuperior ; G 117
|
||||||
|
U 180 ; WX 500 ; N acute ; G 118
|
||||||
|
U 181 ; WX 673 ; N mu ; G 119
|
||||||
|
U 182 ; WX 628 ; N paragraph ; G 120
|
||||||
|
U 183 ; WX 300 ; N periodcentered ; G 121
|
||||||
|
U 184 ; WX 500 ; N cedilla ; G 122
|
||||||
|
U 185 ; WX 425 ; N onesuperior ; G 123
|
||||||
|
U 186 ; WX 489 ; N ordmasculine ; G 124
|
||||||
|
U 187 ; WX 494 ; N guillemotright ; G 125
|
||||||
|
U 188 ; WX 820 ; N onequarter ; G 126
|
||||||
|
U 189 ; WX 820 ; N onehalf ; G 127
|
||||||
|
U 190 ; WX 820 ; N threequarters ; G 128
|
||||||
|
U 191 ; WX 580 ; N questiondown ; G 129
|
||||||
|
U 192 ; WX 694 ; N Agrave ; G 130
|
||||||
|
U 193 ; WX 694 ; N Aacute ; G 131
|
||||||
|
U 194 ; WX 694 ; N Acircumflex ; G 132
|
||||||
|
U 195 ; WX 694 ; N Atilde ; G 133
|
||||||
|
U 196 ; WX 694 ; N Adieresis ; G 134
|
||||||
|
U 197 ; WX 694 ; N Aring ; G 135
|
||||||
|
U 198 ; WX 1033 ; N AE ; G 136
|
||||||
|
U 199 ; WX 690 ; N Ccedilla ; G 137
|
||||||
|
U 200 ; WX 624 ; N Egrave ; G 138
|
||||||
|
U 201 ; WX 624 ; N Eacute ; G 139
|
||||||
|
U 202 ; WX 624 ; N Ecircumflex ; G 140
|
||||||
|
U 203 ; WX 624 ; N Edieresis ; G 141
|
||||||
|
U 204 ; WX 355 ; N Igrave ; G 142
|
||||||
|
U 205 ; WX 355 ; N Iacute ; G 143
|
||||||
|
U 206 ; WX 355 ; N Icircumflex ; G 144
|
||||||
|
U 207 ; WX 355 ; N Idieresis ; G 145
|
||||||
|
U 208 ; WX 763 ; N Eth ; G 146
|
||||||
|
U 209 ; WX 670 ; N Ntilde ; G 147
|
||||||
|
U 210 ; WX 748 ; N Ograve ; G 148
|
||||||
|
U 211 ; WX 748 ; N Oacute ; G 149
|
||||||
|
U 212 ; WX 748 ; N Ocircumflex ; G 150
|
||||||
|
U 213 ; WX 748 ; N Otilde ; G 151
|
||||||
|
U 214 ; WX 748 ; N Odieresis ; G 152
|
||||||
|
U 215 ; WX 530 ; N multiply ; G 153
|
||||||
|
U 216 ; WX 748 ; N Oslash ; G 154
|
||||||
|
U 217 ; WX 683 ; N Ugrave ; G 155
|
||||||
|
U 218 ; WX 683 ; N Uacute ; G 156
|
||||||
|
U 219 ; WX 683 ; N Ucircumflex ; G 157
|
||||||
|
U 220 ; WX 683 ; N Udieresis ; G 158
|
||||||
|
U 221 ; WX 641 ; N Yacute ; G 159
|
||||||
|
U 222 ; WX 634 ; N Thorn ; G 160
|
||||||
|
U 223 ; WX 674 ; N germandbls ; G 161
|
||||||
|
U 224 ; WX 549 ; N agrave ; G 162
|
||||||
|
U 225 ; WX 549 ; N aacute ; G 163
|
||||||
|
U 226 ; WX 549 ; N acircumflex ; G 164
|
||||||
|
U 227 ; WX 549 ; N atilde ; G 165
|
||||||
|
U 228 ; WX 549 ; N adieresis ; G 166
|
||||||
|
U 229 ; WX 549 ; N aring ; G 167
|
||||||
|
U 230 ; WX 772 ; N ae ; G 168
|
||||||
|
U 231 ; WX 483 ; N ccedilla ; G 169
|
||||||
|
U 232 ; WX 516 ; N egrave ; G 170
|
||||||
|
U 233 ; WX 516 ; N eacute ; G 171
|
||||||
|
U 234 ; WX 516 ; N ecircumflex ; G 172
|
||||||
|
U 235 ; WX 516 ; N edieresis ; G 173
|
||||||
|
U 236 ; WX 317 ; N igrave ; G 174
|
||||||
|
U 237 ; WX 317 ; N iacute ; G 175
|
||||||
|
U 238 ; WX 317 ; N icircumflex ; G 176
|
||||||
|
U 239 ; WX 317 ; N idieresis ; G 177
|
||||||
|
U 240 ; WX 560 ; N eth ; G 178
|
||||||
|
U 241 ; WX 616 ; N ntilde ; G 179
|
||||||
|
U 242 ; WX 543 ; N ograve ; G 180
|
||||||
|
U 243 ; WX 543 ; N oacute ; G 181
|
||||||
|
U 244 ; WX 543 ; N ocircumflex ; G 182
|
||||||
|
U 245 ; WX 543 ; N otilde ; G 183
|
||||||
|
U 246 ; WX 543 ; N odieresis ; G 184
|
||||||
|
U 247 ; WX 530 ; N divide ; G 185
|
||||||
|
U 248 ; WX 546 ; N oslash ; G 186
|
||||||
|
U 249 ; WX 605 ; N ugrave ; G 187
|
||||||
|
U 250 ; WX 605 ; N uacute ; G 188
|
||||||
|
U 251 ; WX 605 ; N ucircumflex ; G 189
|
||||||
|
U 252 ; WX 605 ; N udieresis ; G 190
|
||||||
|
U 253 ; WX 532 ; N yacute ; G 191
|
||||||
|
U 254 ; WX 588 ; N thorn ; G 192
|
||||||
|
U 255 ; WX 532 ; N ydieresis ; G 193
|
||||||
|
U 256 ; WX 694 ; N Amacron ; G 194
|
||||||
|
U 257 ; WX 549 ; N amacron ; G 195
|
||||||
|
U 258 ; WX 694 ; N Abreve ; G 196
|
||||||
|
U 259 ; WX 549 ; N abreve ; G 197
|
||||||
|
U 260 ; WX 694 ; N Aogonek ; G 198
|
||||||
|
U 261 ; WX 549 ; N aogonek ; G 199
|
||||||
|
U 262 ; WX 690 ; N Cacute ; G 200
|
||||||
|
U 263 ; WX 483 ; N cacute ; G 201
|
||||||
|
U 264 ; WX 690 ; N Ccircumflex ; G 202
|
||||||
|
U 265 ; WX 483 ; N ccircumflex ; G 203
|
||||||
|
U 266 ; WX 690 ; N Cdotaccent ; G 204
|
||||||
|
U 267 ; WX 483 ; N cdotaccent ; G 205
|
||||||
|
U 268 ; WX 690 ; N Ccaron ; G 206
|
||||||
|
U 269 ; WX 483 ; N ccaron ; G 207
|
||||||
|
U 270 ; WX 755 ; N Dcaron ; G 208
|
||||||
|
U 271 ; WX 664 ; N dcaron ; G 209
|
||||||
|
U 272 ; WX 763 ; N Dcroat ; G 210
|
||||||
|
U 273 ; WX 584 ; N dmacron ; G 211
|
||||||
|
U 274 ; WX 624 ; N Emacron ; G 212
|
||||||
|
U 275 ; WX 516 ; N emacron ; G 213
|
||||||
|
U 276 ; WX 624 ; N Ebreve ; G 214
|
||||||
|
U 277 ; WX 516 ; N ebreve ; G 215
|
||||||
|
U 278 ; WX 624 ; N Edotaccent ; G 216
|
||||||
|
U 279 ; WX 516 ; N edotaccent ; G 217
|
||||||
|
U 280 ; WX 624 ; N Eogonek ; G 218
|
||||||
|
U 281 ; WX 516 ; N eogonek ; G 219
|
||||||
|
U 282 ; WX 624 ; N Ecaron ; G 220
|
||||||
|
U 283 ; WX 516 ; N ecaron ; G 221
|
||||||
|
U 284 ; WX 723 ; N Gcircumflex ; G 222
|
||||||
|
U 285 ; WX 522 ; N gcircumflex ; G 223
|
||||||
|
U 286 ; WX 723 ; N Gbreve ; G 224
|
||||||
|
U 287 ; WX 522 ; N gbreve ; G 225
|
||||||
|
U 288 ; WX 723 ; N Gdotaccent ; G 226
|
||||||
|
U 289 ; WX 522 ; N gdotaccent ; G 227
|
||||||
|
U 290 ; WX 723 ; N Gcommaaccent ; G 228
|
||||||
|
U 291 ; WX 522 ; N gcommaaccent ; G 229
|
||||||
|
U 292 ; WX 749 ; N Hcircumflex ; G 230
|
||||||
|
U 293 ; WX 616 ; N hcircumflex ; G 231
|
||||||
|
U 294 ; WX 749 ; N Hbar ; G 232
|
||||||
|
U 295 ; WX 616 ; N hbar ; G 233
|
||||||
|
U 296 ; WX 355 ; N Itilde ; G 234
|
||||||
|
U 297 ; WX 317 ; N itilde ; G 235
|
||||||
|
U 298 ; WX 355 ; N Imacron ; G 236
|
||||||
|
U 299 ; WX 317 ; N imacron ; G 237
|
||||||
|
U 300 ; WX 355 ; N Ibreve ; G 238
|
||||||
|
U 301 ; WX 317 ; N ibreve ; G 239
|
||||||
|
U 302 ; WX 355 ; N Iogonek ; G 240
|
||||||
|
U 303 ; WX 317 ; N iogonek ; G 241
|
||||||
|
U 304 ; WX 355 ; N Idot ; G 242
|
||||||
|
U 305 ; WX 317 ; N dotlessi ; G 243
|
||||||
|
U 306 ; WX 862 ; N IJ ; G 244
|
||||||
|
U 307 ; WX 623 ; N ij ; G 245
|
||||||
|
U 308 ; WX 507 ; N Jcircumflex ; G 246
|
||||||
|
U 309 ; WX 306 ; N jcircumflex ; G 247
|
||||||
|
U 310 ; WX 734 ; N Kcommaaccent ; G 248
|
||||||
|
U 311 ; WX 620 ; N kcommaaccent ; G 249
|
||||||
|
U 312 ; WX 620 ; N kgreenlandic ; G 250
|
||||||
|
U 313 ; WX 596 ; N Lacute ; G 251
|
||||||
|
U 314 ; WX 316 ; N lacute ; G 252
|
||||||
|
U 315 ; WX 596 ; N Lcommaaccent ; G 253
|
||||||
|
U 316 ; WX 316 ; N lcommaaccent ; G 254
|
||||||
|
U 317 ; WX 596 ; N Lcaron ; G 255
|
||||||
|
U 318 ; WX 385 ; N lcaron ; G 256
|
||||||
|
U 319 ; WX 596 ; N Ldot ; G 257
|
||||||
|
U 320 ; WX 437 ; N ldot ; G 258
|
||||||
|
U 321 ; WX 596 ; N Lslash ; G 259
|
||||||
|
U 322 ; WX 322 ; N lslash ; G 260
|
||||||
|
U 323 ; WX 670 ; N Nacute ; G 261
|
||||||
|
U 324 ; WX 616 ; N nacute ; G 262
|
||||||
|
U 325 ; WX 670 ; N Ncommaaccent ; G 263
|
||||||
|
U 326 ; WX 616 ; N ncommaaccent ; G 264
|
||||||
|
U 327 ; WX 670 ; N Ncaron ; G 265
|
||||||
|
U 328 ; WX 616 ; N ncaron ; G 266
|
||||||
|
U 329 ; WX 667 ; N napostrophe ; G 267
|
||||||
|
U 330 ; WX 670 ; N Eng ; G 268
|
||||||
|
U 331 ; WX 610 ; N eng ; G 269
|
||||||
|
U 332 ; WX 748 ; N Omacron ; G 270
|
||||||
|
U 333 ; WX 543 ; N omacron ; G 271
|
||||||
|
U 334 ; WX 748 ; N Obreve ; G 272
|
||||||
|
U 335 ; WX 543 ; N obreve ; G 273
|
||||||
|
U 336 ; WX 748 ; N Ohungarumlaut ; G 274
|
||||||
|
U 337 ; WX 543 ; N ohungarumlaut ; G 275
|
||||||
|
U 338 ; WX 1045 ; N OE ; G 276
|
||||||
|
U 339 ; WX 832 ; N oe ; G 277
|
||||||
|
U 340 ; WX 716 ; N Racute ; G 278
|
||||||
|
U 341 ; WX 495 ; N racute ; G 279
|
||||||
|
U 342 ; WX 716 ; N Rcommaaccent ; G 280
|
||||||
|
U 343 ; WX 495 ; N rcommaaccent ; G 281
|
||||||
|
U 344 ; WX 716 ; N Rcaron ; G 282
|
||||||
|
U 345 ; WX 495 ; N rcaron ; G 283
|
||||||
|
U 346 ; WX 600 ; N Sacute ; G 284
|
||||||
|
U 347 ; WX 434 ; N sacute ; G 285
|
||||||
|
U 348 ; WX 600 ; N Scircumflex ; G 286
|
||||||
|
U 349 ; WX 434 ; N scircumflex ; G 287
|
||||||
|
U 350 ; WX 600 ; N Scedilla ; G 288
|
||||||
|
U 351 ; WX 428 ; N scedilla ; G 289
|
||||||
|
U 352 ; WX 600 ; N Scaron ; G 290
|
||||||
|
U 353 ; WX 434 ; N scaron ; G 291
|
||||||
|
U 354 ; WX 683 ; N uni0162 ; G 292
|
||||||
|
U 355 ; WX 384 ; N uni0163 ; G 293
|
||||||
|
U 356 ; WX 683 ; N Tcaron ; G 294
|
||||||
|
U 357 ; WX 394 ; N tcaron ; G 295
|
||||||
|
U 358 ; WX 683 ; N Tbar ; G 296
|
||||||
|
U 359 ; WX 384 ; N tbar ; G 297
|
||||||
|
U 360 ; WX 683 ; N Utilde ; G 298
|
||||||
|
U 361 ; WX 605 ; N utilde ; G 299
|
||||||
|
U 362 ; WX 683 ; N Umacron ; G 300
|
||||||
|
U 363 ; WX 605 ; N umacron ; G 301
|
||||||
|
U 364 ; WX 683 ; N Ubreve ; G 302
|
||||||
|
U 365 ; WX 605 ; N ubreve ; G 303
|
||||||
|
U 366 ; WX 683 ; N Uring ; G 304
|
||||||
|
U 367 ; WX 605 ; N uring ; G 305
|
||||||
|
U 368 ; WX 683 ; N Uhungarumlaut ; G 306
|
||||||
|
U 369 ; WX 605 ; N uhungarumlaut ; G 307
|
||||||
|
U 370 ; WX 683 ; N Uogonek ; G 308
|
||||||
|
U 371 ; WX 605 ; N uogonek ; G 309
|
||||||
|
U 372 ; WX 1015 ; N Wcircumflex ; G 310
|
||||||
|
U 373 ; WX 834 ; N wcircumflex ; G 311
|
||||||
|
U 374 ; WX 641 ; N Ycircumflex ; G 312
|
||||||
|
U 375 ; WX 532 ; N ycircumflex ; G 313
|
||||||
|
U 376 ; WX 641 ; N Ydieresis ; G 314
|
||||||
|
U 377 ; WX 612 ; N Zacute ; G 315
|
||||||
|
U 378 ; WX 500 ; N zacute ; G 316
|
||||||
|
U 379 ; WX 612 ; N Zdotaccent ; G 317
|
||||||
|
U 380 ; WX 500 ; N zdotaccent ; G 318
|
||||||
|
U 381 ; WX 612 ; N Zcaron ; G 319
|
||||||
|
U 382 ; WX 500 ; N zcaron ; G 320
|
||||||
|
U 383 ; WX 383 ; N longs ; G 321
|
||||||
|
U 402 ; WX 549 ; N florin ; G 322
|
||||||
|
U 506 ; WX 694 ; N Aringacute ; G 323
|
||||||
|
U 507 ; WX 549 ; N aringacute ; G 324
|
||||||
|
U 508 ; WX 1033 ; N AEacute ; G 325
|
||||||
|
U 509 ; WX 772 ; N aeacute ; G 326
|
||||||
|
U 510 ; WX 748 ; N Oslashacute ; G 327
|
||||||
|
U 511 ; WX 546 ; N oslashacute ; G 328
|
||||||
|
U 536 ; WX 600 ; N Scommaaccent ; G 329
|
||||||
|
U 537 ; WX 434 ; N scommaaccent ; G 330
|
||||||
|
U 538 ; WX 683 ; N uni021A ; G 331
|
||||||
|
U 539 ; WX 394 ; N uni021B ; G 332
|
||||||
|
U 567 ; WX 311 ; N dotlessj ; G 333
|
||||||
|
U 700 ; WX 211 ; N apostrophe ; G 334
|
||||||
|
U 710 ; WX 500 ; N circumflex ; G 335
|
||||||
|
U 711 ; WX 500 ; N caron ; G 336
|
||||||
|
U 713 ; WX 500 ; N uni02C9 ; G 337
|
||||||
|
U 728 ; WX 500 ; N breve ; G 338
|
||||||
|
U 729 ; WX 500 ; N dotaccent ; G 339
|
||||||
|
U 730 ; WX 500 ; N ring ; G 340
|
||||||
|
U 731 ; WX 500 ; N ogonek ; G 341
|
||||||
|
U 732 ; WX 500 ; N tilde ; G 342
|
||||||
|
U 733 ; WX 500 ; N hungarumlaut ; G 343
|
||||||
|
U 916 ; WX 625 ; N uni0394 ; G 344
|
||||||
|
U 937 ; WX 852 ; N uni03A9 ; G 345
|
||||||
|
U 956 ; WX 673 ; N uni03BC ; G 346
|
||||||
|
U 960 ; WX 627 ; N pi ; G 347
|
||||||
|
U 7808 ; WX 1015 ; N Wgrave ; G 348
|
||||||
|
U 7809 ; WX 834 ; N wgrave ; G 349
|
||||||
|
U 7810 ; WX 1015 ; N Wacute ; G 350
|
||||||
|
U 7811 ; WX 834 ; N wacute ; G 351
|
||||||
|
U 7812 ; WX 1015 ; N Wdieresis ; G 352
|
||||||
|
U 7813 ; WX 834 ; N wdieresis ; G 353
|
||||||
|
U 7922 ; WX 641 ; N Ygrave ; G 354
|
||||||
|
U 7923 ; WX 532 ; N ygrave ; G 355
|
||||||
|
U 8211 ; WX 500 ; N endash ; G 356
|
||||||
|
U 8212 ; WX 1000 ; N emdash ; G 357
|
||||||
|
U 8216 ; WX 260 ; N quoteleft ; G 358
|
||||||
|
U 8217 ; WX 260 ; N quoteright ; G 359
|
||||||
|
U 8218 ; WX 260 ; N quotesinglbase ; G 360
|
||||||
|
U 8220 ; WX 448 ; N quotedblleft ; G 361
|
||||||
|
U 8221 ; WX 445 ; N quotedblright ; G 362
|
||||||
|
U 8222 ; WX 445 ; N quotedblbase ; G 363
|
||||||
|
U 8224 ; WX 531 ; N dagger ; G 364
|
||||||
|
U 8225 ; WX 571 ; N daggerdbl ; G 365
|
||||||
|
U 8226 ; WX 400 ; N bullet ; G 366
|
||||||
|
U 8230 ; WX 796 ; N ellipsis ; G 367
|
||||||
|
U 8240 ; WX 1077 ; N perthousand ; G 368
|
||||||
|
U 8249 ; WX 318 ; N guilsinglleft ; G 369
|
||||||
|
U 8250 ; WX 318 ; N guilsinglright ; G 370
|
||||||
|
U 8260 ; WX 200 ; N fraction ; G 371
|
||||||
|
U 8308 ; WX 483 ; N foursuperior ; G 372
|
||||||
|
U 8364 ; WX 612 ; N Euro ; G 373
|
||||||
|
U 8470 ; WX 1072 ; N afii61352 ; G 374
|
||||||
|
U 8482 ; WX 934 ; N trademark ; G 375
|
||||||
|
U 8486 ; WX 852 ; N Omega ; G 376
|
||||||
|
U 8706 ; WX 604 ; N partialdiff ; G 377
|
||||||
|
U 8710 ; WX 625 ; N increment ; G 378
|
||||||
|
U 8719 ; WX 786 ; N product ; G 379
|
||||||
|
U 8721 ; WX 679 ; N summation ; G 380
|
||||||
|
U 8722 ; WX 530 ; N minus ; G 381
|
||||||
|
U 8725 ; WX 200 ; N uni2215 ; G 382
|
||||||
|
U 8729 ; WX 300 ; N uni2219 ; G 383
|
||||||
|
U 8730 ; WX 547 ; N radical ; G 384
|
||||||
|
U 8734 ; WX 685 ; N infinity ; G 385
|
||||||
|
U 8747 ; WX 489 ; N integral ; G 386
|
||||||
|
U 8776 ; WX 530 ; N approxequal ; G 387
|
||||||
|
U 8800 ; WX 530 ; N notequal ; G 388
|
||||||
|
U 8804 ; WX 530 ; N lessequal ; G 389
|
||||||
|
U 8805 ; WX 530 ; N greaterequal ; G 390
|
||||||
|
U 9674 ; WX 475 ; N lozenge ; G 391
|
||||||
|
U 64256 ; WX 712 ; N ff ; G 392
|
||||||
|
U 64257 ; WX 646 ; N fi ; G 393
|
||||||
|
U 64258 ; WX 645 ; N fl ; G 394
|
||||||
|
U 64259 ; WX 977 ; N ffi ; G 395
|
||||||
|
U 64260 ; WX 974 ; N ffl ; G 396
|
||||||
|
EndCharMetrics
|
||||||
|
EndFontMetrics
|
||||||
@@ -0,0 +1,818 @@
|
|||||||
|
{
|
||||||
|
"codeToName": {
|
||||||
|
"32": "space",
|
||||||
|
"33": "exclam",
|
||||||
|
"34": "quotedbl",
|
||||||
|
"35": "numbersign",
|
||||||
|
"36": "dollar",
|
||||||
|
"37": "percent",
|
||||||
|
"38": "ampersand",
|
||||||
|
"39": "quotesingle",
|
||||||
|
"40": "parenleft",
|
||||||
|
"41": "parenright",
|
||||||
|
"42": "asterisk",
|
||||||
|
"43": "plus",
|
||||||
|
"44": "comma",
|
||||||
|
"45": "hyphen",
|
||||||
|
"46": "period",
|
||||||
|
"47": "slash",
|
||||||
|
"48": "zero",
|
||||||
|
"49": "one",
|
||||||
|
"50": "two",
|
||||||
|
"51": "three",
|
||||||
|
"52": "four",
|
||||||
|
"53": "five",
|
||||||
|
"54": "six",
|
||||||
|
"55": "seven",
|
||||||
|
"56": "eight",
|
||||||
|
"57": "nine",
|
||||||
|
"58": "colon",
|
||||||
|
"59": "semicolon",
|
||||||
|
"60": "less",
|
||||||
|
"61": "equal",
|
||||||
|
"62": "greater",
|
||||||
|
"63": "question",
|
||||||
|
"64": "at",
|
||||||
|
"65": "A",
|
||||||
|
"66": "B",
|
||||||
|
"67": "C",
|
||||||
|
"68": "D",
|
||||||
|
"69": "E",
|
||||||
|
"70": "F",
|
||||||
|
"71": "G",
|
||||||
|
"72": "H",
|
||||||
|
"73": "I",
|
||||||
|
"74": "J",
|
||||||
|
"75": "K",
|
||||||
|
"76": "L",
|
||||||
|
"77": "M",
|
||||||
|
"78": "N",
|
||||||
|
"79": "O",
|
||||||
|
"80": "P",
|
||||||
|
"81": "Q",
|
||||||
|
"82": "R",
|
||||||
|
"83": "S",
|
||||||
|
"84": "T",
|
||||||
|
"85": "U",
|
||||||
|
"86": "V",
|
||||||
|
"87": "W",
|
||||||
|
"88": "X",
|
||||||
|
"89": "Y",
|
||||||
|
"90": "Z",
|
||||||
|
"91": "bracketleft",
|
||||||
|
"92": "backslash",
|
||||||
|
"93": "bracketright",
|
||||||
|
"94": "asciicircum",
|
||||||
|
"95": "underscore",
|
||||||
|
"96": "grave",
|
||||||
|
"97": "a",
|
||||||
|
"98": "b",
|
||||||
|
"99": "c",
|
||||||
|
"100": "d",
|
||||||
|
"101": "e",
|
||||||
|
"102": "f",
|
||||||
|
"103": "g",
|
||||||
|
"104": "h",
|
||||||
|
"105": "i",
|
||||||
|
"106": "j",
|
||||||
|
"107": "k",
|
||||||
|
"108": "l",
|
||||||
|
"109": "m",
|
||||||
|
"110": "n",
|
||||||
|
"111": "o",
|
||||||
|
"112": "p",
|
||||||
|
"113": "q",
|
||||||
|
"114": "r",
|
||||||
|
"115": "s",
|
||||||
|
"116": "t",
|
||||||
|
"117": "u",
|
||||||
|
"118": "v",
|
||||||
|
"119": "w",
|
||||||
|
"120": "x",
|
||||||
|
"121": "y",
|
||||||
|
"122": "z",
|
||||||
|
"123": "braceleft",
|
||||||
|
"124": "bar",
|
||||||
|
"125": "braceright",
|
||||||
|
"126": "asciitilde",
|
||||||
|
"160": "uni00A0",
|
||||||
|
"161": "exclamdown",
|
||||||
|
"162": "cent",
|
||||||
|
"163": "sterling",
|
||||||
|
"164": "currency",
|
||||||
|
"165": "yen",
|
||||||
|
"166": "brokenbar",
|
||||||
|
"167": "section",
|
||||||
|
"168": "dieresis",
|
||||||
|
"169": "copyright",
|
||||||
|
"170": "ordfeminine",
|
||||||
|
"171": "guillemotleft",
|
||||||
|
"172": "logicalnot",
|
||||||
|
"173": "uni00AD",
|
||||||
|
"174": "registered",
|
||||||
|
"175": "macron",
|
||||||
|
"176": "degree",
|
||||||
|
"177": "plusminus",
|
||||||
|
"178": "twosuperior",
|
||||||
|
"179": "threesuperior",
|
||||||
|
"180": "acute",
|
||||||
|
"181": "mu",
|
||||||
|
"182": "paragraph",
|
||||||
|
"183": "periodcentered",
|
||||||
|
"184": "cedilla",
|
||||||
|
"185": "onesuperior",
|
||||||
|
"186": "ordmasculine",
|
||||||
|
"187": "guillemotright",
|
||||||
|
"188": "onequarter",
|
||||||
|
"189": "onehalf",
|
||||||
|
"190": "threequarters",
|
||||||
|
"191": "questiondown",
|
||||||
|
"192": "Agrave",
|
||||||
|
"193": "Aacute",
|
||||||
|
"194": "Acircumflex",
|
||||||
|
"195": "Atilde",
|
||||||
|
"196": "Adieresis",
|
||||||
|
"197": "Aring",
|
||||||
|
"198": "AE",
|
||||||
|
"199": "Ccedilla",
|
||||||
|
"200": "Egrave",
|
||||||
|
"201": "Eacute",
|
||||||
|
"202": "Ecircumflex",
|
||||||
|
"203": "Edieresis",
|
||||||
|
"204": "Igrave",
|
||||||
|
"205": "Iacute",
|
||||||
|
"206": "Icircumflex",
|
||||||
|
"207": "Idieresis",
|
||||||
|
"208": "Eth",
|
||||||
|
"209": "Ntilde",
|
||||||
|
"210": "Ograve",
|
||||||
|
"211": "Oacute",
|
||||||
|
"212": "Ocircumflex",
|
||||||
|
"213": "Otilde",
|
||||||
|
"214": "Odieresis",
|
||||||
|
"215": "multiply",
|
||||||
|
"216": "Oslash",
|
||||||
|
"217": "Ugrave",
|
||||||
|
"218": "Uacute",
|
||||||
|
"219": "Ucircumflex",
|
||||||
|
"220": "Udieresis",
|
||||||
|
"221": "Yacute",
|
||||||
|
"222": "Thorn",
|
||||||
|
"223": "germandbls",
|
||||||
|
"224": "agrave",
|
||||||
|
"225": "aacute",
|
||||||
|
"226": "acircumflex",
|
||||||
|
"227": "atilde",
|
||||||
|
"228": "adieresis",
|
||||||
|
"229": "aring",
|
||||||
|
"230": "ae",
|
||||||
|
"231": "ccedilla",
|
||||||
|
"232": "egrave",
|
||||||
|
"233": "eacute",
|
||||||
|
"234": "ecircumflex",
|
||||||
|
"235": "edieresis",
|
||||||
|
"236": "igrave",
|
||||||
|
"237": "iacute",
|
||||||
|
"238": "icircumflex",
|
||||||
|
"239": "idieresis",
|
||||||
|
"240": "eth",
|
||||||
|
"241": "ntilde",
|
||||||
|
"242": "ograve",
|
||||||
|
"243": "oacute",
|
||||||
|
"244": "ocircumflex",
|
||||||
|
"245": "otilde",
|
||||||
|
"246": "odieresis",
|
||||||
|
"247": "divide",
|
||||||
|
"248": "oslash",
|
||||||
|
"249": "ugrave",
|
||||||
|
"250": "uacute",
|
||||||
|
"251": "ucircumflex",
|
||||||
|
"252": "udieresis",
|
||||||
|
"253": "yacute",
|
||||||
|
"254": "thorn",
|
||||||
|
"255": "ydieresis",
|
||||||
|
"256": "Amacron",
|
||||||
|
"257": "amacron",
|
||||||
|
"258": "Abreve",
|
||||||
|
"259": "abreve",
|
||||||
|
"260": "Aogonek",
|
||||||
|
"261": "aogonek",
|
||||||
|
"262": "Cacute",
|
||||||
|
"263": "cacute",
|
||||||
|
"264": "Ccircumflex",
|
||||||
|
"265": "ccircumflex",
|
||||||
|
"266": "Cdotaccent",
|
||||||
|
"267": "cdotaccent",
|
||||||
|
"268": "Ccaron",
|
||||||
|
"269": "ccaron",
|
||||||
|
"270": "Dcaron",
|
||||||
|
"271": "dcaron",
|
||||||
|
"272": "Dcroat",
|
||||||
|
"273": "dmacron",
|
||||||
|
"274": "Emacron",
|
||||||
|
"275": "emacron",
|
||||||
|
"276": "Ebreve",
|
||||||
|
"277": "ebreve",
|
||||||
|
"278": "Edotaccent",
|
||||||
|
"279": "edotaccent",
|
||||||
|
"280": "Eogonek",
|
||||||
|
"281": "eogonek",
|
||||||
|
"282": "Ecaron",
|
||||||
|
"283": "ecaron",
|
||||||
|
"284": "Gcircumflex",
|
||||||
|
"285": "gcircumflex",
|
||||||
|
"286": "Gbreve",
|
||||||
|
"287": "gbreve",
|
||||||
|
"288": "Gdotaccent",
|
||||||
|
"289": "gdotaccent",
|
||||||
|
"290": "Gcommaaccent",
|
||||||
|
"291": "gcommaaccent",
|
||||||
|
"292": "Hcircumflex",
|
||||||
|
"293": "hcircumflex",
|
||||||
|
"294": "Hbar",
|
||||||
|
"295": "hbar",
|
||||||
|
"296": "Itilde",
|
||||||
|
"297": "itilde",
|
||||||
|
"298": "Imacron",
|
||||||
|
"299": "imacron",
|
||||||
|
"300": "Ibreve",
|
||||||
|
"301": "ibreve",
|
||||||
|
"302": "Iogonek",
|
||||||
|
"303": "iogonek",
|
||||||
|
"304": "Idot",
|
||||||
|
"305": "dotlessi",
|
||||||
|
"306": "IJ",
|
||||||
|
"307": "ij",
|
||||||
|
"308": "Jcircumflex",
|
||||||
|
"309": "jcircumflex",
|
||||||
|
"310": "Kcommaaccent",
|
||||||
|
"311": "kcommaaccent",
|
||||||
|
"312": "kgreenlandic",
|
||||||
|
"313": "Lacute",
|
||||||
|
"314": "lacute",
|
||||||
|
"315": "Lcommaaccent",
|
||||||
|
"316": "lcommaaccent",
|
||||||
|
"317": "Lcaron",
|
||||||
|
"318": "lcaron",
|
||||||
|
"319": "Ldot",
|
||||||
|
"320": "ldot",
|
||||||
|
"321": "Lslash",
|
||||||
|
"322": "lslash",
|
||||||
|
"323": "Nacute",
|
||||||
|
"324": "nacute",
|
||||||
|
"325": "Ncommaaccent",
|
||||||
|
"326": "ncommaaccent",
|
||||||
|
"327": "Ncaron",
|
||||||
|
"328": "ncaron",
|
||||||
|
"329": "napostrophe",
|
||||||
|
"330": "Eng",
|
||||||
|
"331": "eng",
|
||||||
|
"332": "Omacron",
|
||||||
|
"333": "omacron",
|
||||||
|
"334": "Obreve",
|
||||||
|
"335": "obreve",
|
||||||
|
"336": "Ohungarumlaut",
|
||||||
|
"337": "ohungarumlaut",
|
||||||
|
"338": "OE",
|
||||||
|
"339": "oe",
|
||||||
|
"340": "Racute",
|
||||||
|
"341": "racute",
|
||||||
|
"342": "Rcommaaccent",
|
||||||
|
"343": "rcommaaccent",
|
||||||
|
"344": "Rcaron",
|
||||||
|
"345": "rcaron",
|
||||||
|
"346": "Sacute",
|
||||||
|
"347": "sacute",
|
||||||
|
"348": "Scircumflex",
|
||||||
|
"349": "scircumflex",
|
||||||
|
"350": "Scedilla",
|
||||||
|
"351": "scedilla",
|
||||||
|
"352": "Scaron",
|
||||||
|
"353": "scaron",
|
||||||
|
"354": "uni0162",
|
||||||
|
"355": "uni0163",
|
||||||
|
"356": "Tcaron",
|
||||||
|
"357": "tcaron",
|
||||||
|
"358": "Tbar",
|
||||||
|
"359": "tbar",
|
||||||
|
"360": "Utilde",
|
||||||
|
"361": "utilde",
|
||||||
|
"362": "Umacron",
|
||||||
|
"363": "umacron",
|
||||||
|
"364": "Ubreve",
|
||||||
|
"365": "ubreve",
|
||||||
|
"366": "Uring",
|
||||||
|
"367": "uring",
|
||||||
|
"368": "Uhungarumlaut",
|
||||||
|
"369": "uhungarumlaut",
|
||||||
|
"370": "Uogonek",
|
||||||
|
"371": "uogonek",
|
||||||
|
"372": "Wcircumflex",
|
||||||
|
"373": "wcircumflex",
|
||||||
|
"374": "Ycircumflex",
|
||||||
|
"375": "ycircumflex",
|
||||||
|
"376": "Ydieresis",
|
||||||
|
"377": "Zacute",
|
||||||
|
"378": "zacute",
|
||||||
|
"379": "Zdotaccent",
|
||||||
|
"380": "zdotaccent",
|
||||||
|
"381": "Zcaron",
|
||||||
|
"382": "zcaron",
|
||||||
|
"383": "longs",
|
||||||
|
"402": "florin",
|
||||||
|
"506": "Aringacute",
|
||||||
|
"507": "aringacute",
|
||||||
|
"508": "AEacute",
|
||||||
|
"509": "aeacute",
|
||||||
|
"510": "Oslashacute",
|
||||||
|
"511": "oslashacute",
|
||||||
|
"536": "Scommaaccent",
|
||||||
|
"537": "scommaaccent",
|
||||||
|
"538": "uni021A",
|
||||||
|
"539": "uni021B",
|
||||||
|
"567": "dotlessj",
|
||||||
|
"700": "apostrophe",
|
||||||
|
"710": "circumflex",
|
||||||
|
"711": "caron",
|
||||||
|
"713": "uni02C9",
|
||||||
|
"728": "breve",
|
||||||
|
"729": "dotaccent",
|
||||||
|
"730": "ring",
|
||||||
|
"731": "ogonek",
|
||||||
|
"732": "tilde",
|
||||||
|
"733": "hungarumlaut",
|
||||||
|
"916": "uni0394",
|
||||||
|
"937": "uni03A9",
|
||||||
|
"956": "uni03BC",
|
||||||
|
"960": "pi",
|
||||||
|
"7808": "Wgrave",
|
||||||
|
"7809": "wgrave",
|
||||||
|
"7810": "Wacute",
|
||||||
|
"7811": "wacute",
|
||||||
|
"7812": "Wdieresis",
|
||||||
|
"7813": "wdieresis",
|
||||||
|
"7922": "Ygrave",
|
||||||
|
"7923": "ygrave",
|
||||||
|
"8211": "endash",
|
||||||
|
"8212": "emdash",
|
||||||
|
"8216": "quoteleft",
|
||||||
|
"8217": "quoteright",
|
||||||
|
"8218": "quotesinglbase",
|
||||||
|
"8220": "quotedblleft",
|
||||||
|
"8221": "quotedblright",
|
||||||
|
"8222": "quotedblbase",
|
||||||
|
"8224": "dagger",
|
||||||
|
"8225": "daggerdbl",
|
||||||
|
"8226": "bullet",
|
||||||
|
"8230": "ellipsis",
|
||||||
|
"8240": "perthousand",
|
||||||
|
"8249": "guilsinglleft",
|
||||||
|
"8250": "guilsinglright",
|
||||||
|
"8260": "fraction",
|
||||||
|
"8308": "foursuperior",
|
||||||
|
"8364": "Euro",
|
||||||
|
"8470": "afii61352",
|
||||||
|
"8482": "trademark",
|
||||||
|
"8486": "Omega",
|
||||||
|
"8706": "partialdiff",
|
||||||
|
"8710": "increment",
|
||||||
|
"8719": "product",
|
||||||
|
"8721": "summation",
|
||||||
|
"8722": "minus",
|
||||||
|
"8725": "uni2215",
|
||||||
|
"8729": "uni2219",
|
||||||
|
"8730": "radical",
|
||||||
|
"8734": "infinity",
|
||||||
|
"8747": "integral",
|
||||||
|
"8776": "approxequal",
|
||||||
|
"8800": "notequal",
|
||||||
|
"8804": "lessequal",
|
||||||
|
"8805": "greaterequal",
|
||||||
|
"9674": "lozenge",
|
||||||
|
"64256": "ff",
|
||||||
|
"64257": "fi",
|
||||||
|
"64258": "fl",
|
||||||
|
"64259": "ffi",
|
||||||
|
"64260": "ffl"
|
||||||
|
},
|
||||||
|
"isUnicode": true,
|
||||||
|
"EncodingScheme": "FontSpecific",
|
||||||
|
"FontName": "Abril Fatface",
|
||||||
|
"FullName": "Abril Fatface",
|
||||||
|
"Version": "Version 1.001",
|
||||||
|
"PostScriptName": "AbrilFatface-Regular",
|
||||||
|
"Weight": "Medium",
|
||||||
|
"ItalicAngle": "0",
|
||||||
|
"IsFixedPitch": "false",
|
||||||
|
"UnderlineThickness": "50",
|
||||||
|
"UnderlinePosition": "-75",
|
||||||
|
"FontHeightOffset": "0",
|
||||||
|
"Ascender": "1058",
|
||||||
|
"Descender": "-291",
|
||||||
|
"FontBBox": [
|
||||||
|
"-181",
|
||||||
|
"-291",
|
||||||
|
"1131",
|
||||||
|
"1058"
|
||||||
|
],
|
||||||
|
"StartCharMetrics": "407",
|
||||||
|
"C": {
|
||||||
|
"32": 180,
|
||||||
|
"33": 377,
|
||||||
|
"34": 334,
|
||||||
|
"35": 608,
|
||||||
|
"36": 565,
|
||||||
|
"37": 768,
|
||||||
|
"38": 822,
|
||||||
|
"39": 186,
|
||||||
|
"40": 351,
|
||||||
|
"41": 351,
|
||||||
|
"42": 529,
|
||||||
|
"43": 530,
|
||||||
|
"44": 262,
|
||||||
|
"45": 352,
|
||||||
|
"46": 265,
|
||||||
|
"47": 351,
|
||||||
|
"48": 664,
|
||||||
|
"49": 425,
|
||||||
|
"50": 552,
|
||||||
|
"51": 573,
|
||||||
|
"52": 603,
|
||||||
|
"53": 540,
|
||||||
|
"54": 616,
|
||||||
|
"55": 510,
|
||||||
|
"56": 611,
|
||||||
|
"57": 616,
|
||||||
|
"58": 265,
|
||||||
|
"59": 262,
|
||||||
|
"60": 530,
|
||||||
|
"61": 530,
|
||||||
|
"62": 530,
|
||||||
|
"63": 580,
|
||||||
|
"64": 879,
|
||||||
|
"65": 694,
|
||||||
|
"66": 659,
|
||||||
|
"67": 690,
|
||||||
|
"68": 755,
|
||||||
|
"69": 624,
|
||||||
|
"70": 592,
|
||||||
|
"71": 723,
|
||||||
|
"72": 749,
|
||||||
|
"73": 355,
|
||||||
|
"74": 517,
|
||||||
|
"75": 734,
|
||||||
|
"76": 596,
|
||||||
|
"77": 840,
|
||||||
|
"78": 670,
|
||||||
|
"79": 748,
|
||||||
|
"80": 634,
|
||||||
|
"81": 748,
|
||||||
|
"82": 716,
|
||||||
|
"83": 600,
|
||||||
|
"84": 683,
|
||||||
|
"85": 683,
|
||||||
|
"86": 685,
|
||||||
|
"87": 1015,
|
||||||
|
"88": 711,
|
||||||
|
"89": 641,
|
||||||
|
"90": 612,
|
||||||
|
"91": 329,
|
||||||
|
"92": 351,
|
||||||
|
"93": 328,
|
||||||
|
"94": 560,
|
||||||
|
"95": 500,
|
||||||
|
"96": 500,
|
||||||
|
"97": 549,
|
||||||
|
"98": 588,
|
||||||
|
"99": 483,
|
||||||
|
"100": 588,
|
||||||
|
"101": 516,
|
||||||
|
"102": 383,
|
||||||
|
"103": 522,
|
||||||
|
"104": 616,
|
||||||
|
"105": 317,
|
||||||
|
"106": 311,
|
||||||
|
"107": 620,
|
||||||
|
"108": 316,
|
||||||
|
"109": 888,
|
||||||
|
"110": 616,
|
||||||
|
"111": 543,
|
||||||
|
"112": 588,
|
||||||
|
"113": 588,
|
||||||
|
"114": 495,
|
||||||
|
"115": 434,
|
||||||
|
"116": 394,
|
||||||
|
"117": 605,
|
||||||
|
"118": 532,
|
||||||
|
"119": 834,
|
||||||
|
"120": 595,
|
||||||
|
"121": 532,
|
||||||
|
"122": 520,
|
||||||
|
"123": 377,
|
||||||
|
"124": 319,
|
||||||
|
"125": 377,
|
||||||
|
"126": 530,
|
||||||
|
"160": 180,
|
||||||
|
"161": 377,
|
||||||
|
"162": 515,
|
||||||
|
"163": 581,
|
||||||
|
"164": 530,
|
||||||
|
"165": 609,
|
||||||
|
"166": 319,
|
||||||
|
"167": 699,
|
||||||
|
"168": 500,
|
||||||
|
"169": 781,
|
||||||
|
"170": 454,
|
||||||
|
"171": 494,
|
||||||
|
"172": 530,
|
||||||
|
"173": 340,
|
||||||
|
"174": 459,
|
||||||
|
"175": 500,
|
||||||
|
"176": 329,
|
||||||
|
"177": 530,
|
||||||
|
"178": 417,
|
||||||
|
"179": 422,
|
||||||
|
"180": 500,
|
||||||
|
"181": 673,
|
||||||
|
"182": 628,
|
||||||
|
"183": 300,
|
||||||
|
"184": 500,
|
||||||
|
"185": 425,
|
||||||
|
"186": 489,
|
||||||
|
"187": 494,
|
||||||
|
"188": 820,
|
||||||
|
"189": 820,
|
||||||
|
"190": 820,
|
||||||
|
"191": 580,
|
||||||
|
"192": 694,
|
||||||
|
"193": 694,
|
||||||
|
"194": 694,
|
||||||
|
"195": 694,
|
||||||
|
"196": 694,
|
||||||
|
"197": 694,
|
||||||
|
"198": 1033,
|
||||||
|
"199": 690,
|
||||||
|
"200": 624,
|
||||||
|
"201": 624,
|
||||||
|
"202": 624,
|
||||||
|
"203": 624,
|
||||||
|
"204": 355,
|
||||||
|
"205": 355,
|
||||||
|
"206": 355,
|
||||||
|
"207": 355,
|
||||||
|
"208": 763,
|
||||||
|
"209": 670,
|
||||||
|
"210": 748,
|
||||||
|
"211": 748,
|
||||||
|
"212": 748,
|
||||||
|
"213": 748,
|
||||||
|
"214": 748,
|
||||||
|
"215": 530,
|
||||||
|
"216": 748,
|
||||||
|
"217": 683,
|
||||||
|
"218": 683,
|
||||||
|
"219": 683,
|
||||||
|
"220": 683,
|
||||||
|
"221": 641,
|
||||||
|
"222": 634,
|
||||||
|
"223": 674,
|
||||||
|
"224": 549,
|
||||||
|
"225": 549,
|
||||||
|
"226": 549,
|
||||||
|
"227": 549,
|
||||||
|
"228": 549,
|
||||||
|
"229": 549,
|
||||||
|
"230": 772,
|
||||||
|
"231": 483,
|
||||||
|
"232": 516,
|
||||||
|
"233": 516,
|
||||||
|
"234": 516,
|
||||||
|
"235": 516,
|
||||||
|
"236": 317,
|
||||||
|
"237": 317,
|
||||||
|
"238": 317,
|
||||||
|
"239": 317,
|
||||||
|
"240": 560,
|
||||||
|
"241": 616,
|
||||||
|
"242": 543,
|
||||||
|
"243": 543,
|
||||||
|
"244": 543,
|
||||||
|
"245": 543,
|
||||||
|
"246": 543,
|
||||||
|
"247": 530,
|
||||||
|
"248": 546,
|
||||||
|
"249": 605,
|
||||||
|
"250": 605,
|
||||||
|
"251": 605,
|
||||||
|
"252": 605,
|
||||||
|
"253": 532,
|
||||||
|
"254": 588,
|
||||||
|
"255": 532,
|
||||||
|
"256": 694,
|
||||||
|
"257": 549,
|
||||||
|
"258": 694,
|
||||||
|
"259": 549,
|
||||||
|
"260": 694,
|
||||||
|
"261": 549,
|
||||||
|
"262": 690,
|
||||||
|
"263": 483,
|
||||||
|
"264": 690,
|
||||||
|
"265": 483,
|
||||||
|
"266": 690,
|
||||||
|
"267": 483,
|
||||||
|
"268": 690,
|
||||||
|
"269": 483,
|
||||||
|
"270": 755,
|
||||||
|
"271": 664,
|
||||||
|
"272": 763,
|
||||||
|
"273": 584,
|
||||||
|
"274": 624,
|
||||||
|
"275": 516,
|
||||||
|
"276": 624,
|
||||||
|
"277": 516,
|
||||||
|
"278": 624,
|
||||||
|
"279": 516,
|
||||||
|
"280": 624,
|
||||||
|
"281": 516,
|
||||||
|
"282": 624,
|
||||||
|
"283": 516,
|
||||||
|
"284": 723,
|
||||||
|
"285": 522,
|
||||||
|
"286": 723,
|
||||||
|
"287": 522,
|
||||||
|
"288": 723,
|
||||||
|
"289": 522,
|
||||||
|
"290": 723,
|
||||||
|
"291": 522,
|
||||||
|
"292": 749,
|
||||||
|
"293": 616,
|
||||||
|
"294": 749,
|
||||||
|
"295": 616,
|
||||||
|
"296": 355,
|
||||||
|
"297": 317,
|
||||||
|
"298": 355,
|
||||||
|
"299": 317,
|
||||||
|
"300": 355,
|
||||||
|
"301": 317,
|
||||||
|
"302": 355,
|
||||||
|
"303": 317,
|
||||||
|
"304": 355,
|
||||||
|
"305": 317,
|
||||||
|
"306": 862,
|
||||||
|
"307": 623,
|
||||||
|
"308": 507,
|
||||||
|
"309": 306,
|
||||||
|
"310": 734,
|
||||||
|
"311": 620,
|
||||||
|
"312": 620,
|
||||||
|
"313": 596,
|
||||||
|
"314": 316,
|
||||||
|
"315": 596,
|
||||||
|
"316": 316,
|
||||||
|
"317": 596,
|
||||||
|
"318": 385,
|
||||||
|
"319": 596,
|
||||||
|
"320": 437,
|
||||||
|
"321": 596,
|
||||||
|
"322": 322,
|
||||||
|
"323": 670,
|
||||||
|
"324": 616,
|
||||||
|
"325": 670,
|
||||||
|
"326": 616,
|
||||||
|
"327": 670,
|
||||||
|
"328": 616,
|
||||||
|
"329": 667,
|
||||||
|
"330": 670,
|
||||||
|
"331": 610,
|
||||||
|
"332": 748,
|
||||||
|
"333": 543,
|
||||||
|
"334": 748,
|
||||||
|
"335": 543,
|
||||||
|
"336": 748,
|
||||||
|
"337": 543,
|
||||||
|
"338": 1045,
|
||||||
|
"339": 832,
|
||||||
|
"340": 716,
|
||||||
|
"341": 495,
|
||||||
|
"342": 716,
|
||||||
|
"343": 495,
|
||||||
|
"344": 716,
|
||||||
|
"345": 495,
|
||||||
|
"346": 600,
|
||||||
|
"347": 434,
|
||||||
|
"348": 600,
|
||||||
|
"349": 434,
|
||||||
|
"350": 600,
|
||||||
|
"351": 428,
|
||||||
|
"352": 600,
|
||||||
|
"353": 434,
|
||||||
|
"354": 683,
|
||||||
|
"355": 384,
|
||||||
|
"356": 683,
|
||||||
|
"357": 394,
|
||||||
|
"358": 683,
|
||||||
|
"359": 384,
|
||||||
|
"360": 683,
|
||||||
|
"361": 605,
|
||||||
|
"362": 683,
|
||||||
|
"363": 605,
|
||||||
|
"364": 683,
|
||||||
|
"365": 605,
|
||||||
|
"366": 683,
|
||||||
|
"367": 605,
|
||||||
|
"368": 683,
|
||||||
|
"369": 605,
|
||||||
|
"370": 683,
|
||||||
|
"371": 605,
|
||||||
|
"372": 1015,
|
||||||
|
"373": 834,
|
||||||
|
"374": 641,
|
||||||
|
"375": 532,
|
||||||
|
"376": 641,
|
||||||
|
"377": 612,
|
||||||
|
"378": 500,
|
||||||
|
"379": 612,
|
||||||
|
"380": 500,
|
||||||
|
"381": 612,
|
||||||
|
"382": 500,
|
||||||
|
"383": 383,
|
||||||
|
"402": 549,
|
||||||
|
"506": 694,
|
||||||
|
"507": 549,
|
||||||
|
"508": 1033,
|
||||||
|
"509": 772,
|
||||||
|
"510": 748,
|
||||||
|
"511": 546,
|
||||||
|
"536": 600,
|
||||||
|
"537": 434,
|
||||||
|
"538": 683,
|
||||||
|
"539": 394,
|
||||||
|
"567": 311,
|
||||||
|
"700": 211,
|
||||||
|
"710": 500,
|
||||||
|
"711": 500,
|
||||||
|
"713": 500,
|
||||||
|
"728": 500,
|
||||||
|
"729": 500,
|
||||||
|
"730": 500,
|
||||||
|
"731": 500,
|
||||||
|
"732": 500,
|
||||||
|
"733": 500,
|
||||||
|
"916": 625,
|
||||||
|
"937": 852,
|
||||||
|
"956": 673,
|
||||||
|
"960": 627,
|
||||||
|
"7808": 1015,
|
||||||
|
"7809": 834,
|
||||||
|
"7810": 1015,
|
||||||
|
"7811": 834,
|
||||||
|
"7812": 1015,
|
||||||
|
"7813": 834,
|
||||||
|
"7922": 641,
|
||||||
|
"7923": 532,
|
||||||
|
"8211": 500,
|
||||||
|
"8212": 1000,
|
||||||
|
"8216": 260,
|
||||||
|
"8217": 260,
|
||||||
|
"8218": 260,
|
||||||
|
"8220": 448,
|
||||||
|
"8221": 445,
|
||||||
|
"8222": 445,
|
||||||
|
"8224": 531,
|
||||||
|
"8225": 571,
|
||||||
|
"8226": 400,
|
||||||
|
"8230": 796,
|
||||||
|
"8240": 1077,
|
||||||
|
"8249": 318,
|
||||||
|
"8250": 318,
|
||||||
|
"8260": 200,
|
||||||
|
"8308": 483,
|
||||||
|
"8364": 612,
|
||||||
|
"8470": 1072,
|
||||||
|
"8482": 934,
|
||||||
|
"8486": 852,
|
||||||
|
"8706": 604,
|
||||||
|
"8710": 625,
|
||||||
|
"8719": 786,
|
||||||
|
"8721": 679,
|
||||||
|
"8722": 530,
|
||||||
|
"8725": 200,
|
||||||
|
"8729": 300,
|
||||||
|
"8730": 547,
|
||||||
|
"8734": 685,
|
||||||
|
"8747": 489,
|
||||||
|
"8776": 530,
|
||||||
|
"8800": 530,
|
||||||
|
"8804": 530,
|
||||||
|
"8805": 530,
|
||||||
|
"9674": 475,
|
||||||
|
"64256": 712,
|
||||||
|
"64257": 646,
|
||||||
|
"64258": 645,
|
||||||
|
"64259": 977,
|
||||||
|
"64260": 974
|
||||||
|
},
|
||||||
|
"CIDtoGID_Compressed": true,
|
||||||
|
"CIDtoGID": "eJzt22OQH2kQgPGnL7Zt27ZtGxfbtn22bdu2bds2c1tX\/2\/ZXG02m9291POrmum3+kX31MzXgYOUhaxkIzs5yEkucpOHvOQjPwUoSCEKU4SiFKM4JShJKUpThrKUozwVqEglKlOFqlSjOjWoSS1qU4e61KM+DWhIIxrThKY0ozktaEkrWtOGtrSjPR3oSCc604WudKM7PehJL3rTh770oz8DGMggBjOEoQxjOCMYyShGM4axjGM8E5jIkQf78EkmMZkpTGUa05nBTGYxmznMZR7zWcBCFrGYJSxlGctZwUpWsZo1rGUd69nARjaxmS1sZRvb2cFOdrGbPRzF0RzDsRzH8ZzAiZzEyZzCqZzG6ZzBmZzF2ZzDuZzH+VzAhVzExVzCpVzG5VzBlVzF1VzDtVzH9dzAjdzEzdzCrdzG7dzBndzF3dzDvdzH\/TzAgzzEwzzCozzG4zzBkzzF0zzDszzH87zAi7zEy7zCq7zG67zBm7zF27zDu7zH+3zAh3zEx3zCp3zG53zBl3zF13zDt3zH9\/zAj\/zEz\/zCr\/zG7\/zBn\/zF3+wNIuKIyBJZI1tkjxyRM3JF7sgTeSNf5I8CUTAKReEoEkWjWBSPElEySkXpKBNlo1yUjwpRMSpF5agSVaNaVI8aUTNqRe2oE3WjXtSPBtEwGkXjaBJNo1k0jxbRMlpF62gTbaNdtI8O0TE6peQVR+c0+E4ykegSXaNbdI8e0fOA9\/aK3tEn+qaycr\/U7Tv8RP9kcgNiYNJ90H\/uGxxDYmgMi+Ex4hC1pmTEyBSvHJWiVaMTcUzq+pEkSZIkSZIkSZIkSZIkSZIkSZKkw12MjXExPibExEiLv4EzpZgUkzO6B\/2fxZSYmhhNi+kxIynOjFkxOynOibkxLzE3P5mdC\/bJLIxFyaxbnIbtJiOWHNrz96m3NH3rpYdYtp\/88kRckX69KO3EykRctc\/M6qRrTaz9d7wukVsfGxKjjfs9cVOqe9l8gOu3JOLW2JbampIkZQaxPaM7kCRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiQpc4sdsTN2xe7Yk9GdSJIkKT38A+9mppk=",
|
||||||
|
"_version_": 6
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"abrilfatface": {
|
||||||
|
"normal": "abrilfatface_normal_0b0dfdfc635ff964aa0fd5a2628a286e"
|
||||||
|
},
|
||||||
|
"montserrat": {
|
||||||
|
"normal": "\/var\/www\/additional_design\/storage\/fonts\/montserrat_normal_9cd398fbad47e4e0c71e816b57c7a88f",
|
||||||
|
"600": "\/var\/www\/additional_design\/storage\/fonts\/montserrat_600_fd8b5b6ade94285bb21ac842b5c18d9c",
|
||||||
|
"900": "\/var\/www\/additional_design\/storage\/fonts\/montserrat_900_fd8b5b6ade94285bb21ac842b5c18d9c",
|
||||||
|
"500": "\/var\/www\/additional_design\/storage\/fonts\/montserrat_500_fd8b5b6ade94285bb21ac842b5c18d9c",
|
||||||
|
"bold": "montserrat_bold_b1e1dbf4d5fde9533f68388ba51aca1d"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" <?php echo e($attributes); ?>>
|
||||||
|
<path d="M9.75 2.56944C9.75 3.29815 8.07107 3.88889 6 3.88889C3.92893 3.88889 2.25 3.29815 2.25 2.56944M9.75 2.56944C9.75 1.84074 8.07107 1.25 6 1.25C3.92893 1.25 2.25 1.84074 2.25 2.56944M9.75 2.56944V9.43056C9.75 10.1593 8.07107 10.75 6 10.75C3.92893 10.75 2.25 10.1593 2.25 9.43056V2.56944M9.75 5.94434C9.75 6.67304 8.07107 7.26378 6 7.26378C3.92893 7.26378 2.25 6.67304 2.25 5.94434" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/database.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 780 B |
@@ -0,0 +1,83 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['method']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['method']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
$type = match ($method) {
|
||||||
|
'GET', 'OPTIONS', 'ANY' => 'default',
|
||||||
|
'POST' => 'success',
|
||||||
|
'PUT', 'PATCH' => 'primary',
|
||||||
|
'DELETE' => 'error',
|
||||||
|
default => 'default',
|
||||||
|
};
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.badge','data' => ['type' => ''.e($type).'']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::badge'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['type' => ''.e($type).'']); ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalba2eecb54ab69c011eea9820c76048d8 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalba2eecb54ab69c011eea9820c76048d8 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.globe','data' => ['class' => 'w-2.5 h-2.5']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.globe'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-2.5 h-2.5']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalba2eecb54ab69c011eea9820c76048d8)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalba2eecb54ab69c011eea9820c76048d8; ?>
|
||||||
|
<?php unset($__attributesOriginalba2eecb54ab69c011eea9820c76048d8); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalba2eecb54ab69c011eea9820c76048d8)): ?>
|
||||||
|
<?php $component = $__componentOriginalba2eecb54ab69c011eea9820c76048d8; ?>
|
||||||
|
<?php unset($__componentOriginalba2eecb54ab69c011eea9820c76048d8); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php echo e($method); ?>
|
||||||
|
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb; ?>
|
||||||
|
<?php unset($__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb)): ?>
|
||||||
|
<?php $component = $__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb; ?>
|
||||||
|
<?php unset($__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/http-method.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" <?php echo e($attributes); ?>>
|
||||||
|
<g clip-path="url(#clip0_14732_6211)">
|
||||||
|
<path d="M1.75 5.25V2.75C1.75 1.922 2.422 1.25 3.25 1.25H4.202C4.808 1.25 5.381 1.525 5.761 1.998L6.364 2.75H8.25C9.355 2.75 10.25 3.645 10.25 4.75V5.25" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M2.46801 5.25H9.53101C10.44 5.25 11.14 6.052 11.017 6.953L10.735 9.021C10.6 10.012 9.75301 10.751 8.75301 10.751H3.24601C2.24601 10.751 1.39901 10.012 1.26401 9.021L0.982011 6.953C0.859011 6.052 1.55901 5.25 2.46801 5.25Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_14732_6211">
|
||||||
|
<rect width="12" height="12" />
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/folder-open.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" <?php echo e($attributes); ?>>
|
||||||
|
<path d="M2.75 2.75H5.614L5.316 2.114C5.069 1.587 4.54 1.25 3.958 1.25H2.25C1.422 1.25 0.75 1.922 0.75 2.75V4.75C0.75 3.645 1.645 2.75 2.75 2.75Z" />
|
||||||
|
<path d="M0.75 4.75V2.75C0.75 1.922 1.422 1.25 2.25 1.25H3.958C4.54 1.25 5.069 1.587 5.316 2.114L5.614 2.75" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M2.75 2.75H9.25C10.355 2.75 11.25 3.645 11.25 4.75V8.25C11.25 9.355 10.355 10.25 9.25 10.25H2.75C1.645 10.25 0.75 9.355 0.75 8.25V4.75C0.75 3.645 1.645 2.75 2.75 2.75Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/folder.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 906 B |
@@ -0,0 +1,115 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['title', 'markdown']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['title', 'markdown']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const markdown = <?php echo e(Illuminate\Support\Js::from($markdown)); ?>
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="flex items-center justify-between"
|
||||||
|
x-data="{
|
||||||
|
copied: false,
|
||||||
|
async copyToClipboard() {
|
||||||
|
try {
|
||||||
|
await window.copyToClipboard(markdown);
|
||||||
|
this.copied = true;
|
||||||
|
setTimeout(() => { this.copied = false }, 3000);
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Failed to copy the markdown: ', err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<div class="flex items-center gap-2 h-[56px]">
|
||||||
|
<div class="w-[18px] h-[18px] flex items-center justify-center bg-rose-500 rounded-md">
|
||||||
|
<svg width="2" height="10" class="text-white" viewBox="0 0 2 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M1.00006 6.3188C1.41416 6.3188 1.75006 5.98295 1.75006 5.56885V1.43115C1.75006 1.01705 1.41416 0.681152 1.00006 0.681152C0.585961 0.681152 0.250061 1.01705 0.250061 1.43115V5.56885C0.250061 5.98295 0.585961 6.3188 1.00006 6.3188Z" fill="currentColor" />
|
||||||
|
<path d="M1.00006 9.41699C1.55235 9.41699 2.00007 8.96929 2.00007 8.41699C2.00007 7.86469 1.55235 7.41699 1.00006 7.41699C0.447781 7.41699 6.10352e-05 7.86469 6.10352e-05 8.41699C6.10352e-05 8.96929 0.447781 9.41699 1.00006 9.41699Z" fill="currentColor "/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div class="font-medium text-sm text-neutral-900 dark:text-white">
|
||||||
|
<?php echo e($title); ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button
|
||||||
|
x-cloak
|
||||||
|
class="<?php echo \Illuminate\Support\Arr::toCssClasses([
|
||||||
|
"text-sm rounded-md border px-3 h-8 flex items-center gap-2 transition-colors duration-200 ease-in-out cursor-pointer shadow-xs",
|
||||||
|
"text-neutral-600 dark:text-neutral-400 bg-white/5 border-neutral-200 hover:bg-neutral-100 dark:bg-white/5 dark:border-white/10 dark:hover:bg-white/10",
|
||||||
|
]); ?>"
|
||||||
|
@click="copyToClipboard()"
|
||||||
|
>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal8894ff2e6e6bd543865d608162806b35 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal8894ff2e6e6bd543865d608162806b35 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.copy','data' => ['class' => 'w-3 h-3','xShow' => '!copied']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.copy'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3','x-show' => '!copied']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal8894ff2e6e6bd543865d608162806b35)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal8894ff2e6e6bd543865d608162806b35; ?>
|
||||||
|
<?php unset($__attributesOriginal8894ff2e6e6bd543865d608162806b35); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal8894ff2e6e6bd543865d608162806b35)): ?>
|
||||||
|
<?php $component = $__componentOriginal8894ff2e6e6bd543865d608162806b35; ?>
|
||||||
|
<?php unset($__componentOriginal8894ff2e6e6bd543865d608162806b35); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal394a4f59b8774713925fcf456ba90b57 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal394a4f59b8774713925fcf456ba90b57 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.check','data' => ['class' => 'w-3 h-3 text-emerald-500','xShow' => 'copied']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.check'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3 text-emerald-500','x-show' => 'copied']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal394a4f59b8774713925fcf456ba90b57)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal394a4f59b8774713925fcf456ba90b57; ?>
|
||||||
|
<?php unset($__attributesOriginal394a4f59b8774713925fcf456ba90b57); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal394a4f59b8774713925fcf456ba90b57)): ?>
|
||||||
|
<?php $component = $__componentOriginal394a4f59b8774713925fcf456ba90b57; ?>
|
||||||
|
<?php unset($__componentOriginal394a4f59b8774713925fcf456ba90b57); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<span x-text="copied ? 'Copied to clipboard' : 'Copy as Markdown'"></span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/topbar.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['type' => 'default', 'variant' => 'soft']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['type' => 'default', 'variant' => 'soft']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
$baseClasses = 'inline-flex w-fit shrink-0 items-center justify-center gap-1 font-mono leading-3 uppercase transition-colors dark:border [&_svg]:size-2.5 h-6 min-w-5 rounded-md px-1.5 text-xs/none';
|
||||||
|
|
||||||
|
$types = [
|
||||||
|
'default' => [
|
||||||
|
'soft' => 'bg-black/8 text-neutral-900 dark:border-neutral-700 dark:bg-white/10 dark:text-neutral-100',
|
||||||
|
'solid' => 'bg-neutral-600 text-neutral-100 dark:border-neutral-500 dark:bg-neutral-600',
|
||||||
|
],
|
||||||
|
'success' => [
|
||||||
|
'soft' => 'bg-emerald-200 text-emerald-900 dark:border-emerald-600 dark:bg-emerald-900/70 dark:text-emerald-400',
|
||||||
|
'solid' => 'bg-emerald-600 dark:border-emerald-500 dark:bg-emerald-600',
|
||||||
|
],
|
||||||
|
'primary' => [
|
||||||
|
'soft' => 'bg-blue-100 text-blue-900 dark:border-blue-800 dark:bg-blue-950 dark:text-blue-300',
|
||||||
|
'solid' => 'bg-blue-700 dark:border-blue-600 dark:bg-blue-700',
|
||||||
|
],
|
||||||
|
'error' => [
|
||||||
|
'soft' => 'bg-rose-200 text-rose-900 dark:border-rose-900 dark:bg-rose-950 dark:text-rose-100 dark:[&_svg]:!text-white',
|
||||||
|
'solid' => 'bg-rose-600 dark:border-rose-500 dark:bg-rose-600',
|
||||||
|
],
|
||||||
|
'alert' => [
|
||||||
|
'soft' => 'bg-amber-200 text-amber-900 dark:border-amber-800 dark:bg-amber-950 dark:text-amber-300',
|
||||||
|
'solid' => 'bg-amber-600 dark:border-amber-500 dark:bg-amber-600',
|
||||||
|
],
|
||||||
|
'white' => [
|
||||||
|
'soft' => 'bg-white text-neutral-900 dark:border-neutral-700 dark:bg-neutral-800 dark:text-neutral-100',
|
||||||
|
'solid' => 'bg-black/10 text-neutral-900 dark:text-neutral-900 dark:bg-white',
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
||||||
|
$variants = [
|
||||||
|
'soft' => '',
|
||||||
|
'solid' => 'text-white dark:text-white [&_svg]:!text-white',
|
||||||
|
];
|
||||||
|
|
||||||
|
$typeClasses = $types[$type][$variant] ?? $types['default']['soft'];
|
||||||
|
$variantClasses = $variants[$variant] ?? $variants['soft'];
|
||||||
|
|
||||||
|
$classes = implode(' ', [$baseClasses, $typeClasses, $variantClasses]);
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div <?php echo e($attributes->merge(['class' => $classes])); ?>>
|
||||||
|
<?php echo e($slot); ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/badge.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['frame']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['frame']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
if ($class = $frame->class()) {
|
||||||
|
$source = $class;
|
||||||
|
|
||||||
|
if ($previous = $frame->previous()) {
|
||||||
|
$source .= $previous->operator();
|
||||||
|
$source .= $previous->callable();
|
||||||
|
$source .= '('.implode(', ', $previous->args()).')';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$source = $frame->source();
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal12cb286571f553eebcbe98210b217f94 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal12cb286571f553eebcbe98210b217f94 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.syntax-highlight','data' => ['code' => $source,'language' => 'php','truncate' => true,'class' => 'text-xs min-w-0','dataTippyContent' => ''.e($source).'']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::syntax-highlight'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($source),'language' => 'php','truncate' => true,'class' => 'text-xs min-w-0','data-tippy-content' => ''.e($source).'']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal12cb286571f553eebcbe98210b217f94)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal12cb286571f553eebcbe98210b217f94; ?>
|
||||||
|
<?php unset($__attributesOriginal12cb286571f553eebcbe98210b217f94); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal12cb286571f553eebcbe98210b217f94)): ?>
|
||||||
|
<?php $component = $__componentOriginal12cb286571f553eebcbe98210b217f94; ?>
|
||||||
|
<?php unset($__componentOriginal12cb286571f553eebcbe98210b217f94); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/formatted-source.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" <?php echo e($attributes); ?>>
|
||||||
|
<g clip-path="url(#clip0_14732_6105)">
|
||||||
|
<path d="M9.87466 7.8287L5.92654 0.549947C5.82917 0.369362 5.68068 0.221523 5.49966 0.124947C5.25374 -0.00665839 4.9658 -0.0358401 4.69847 0.0437494C4.43115 0.123339 4.20606 0.305262 4.07216 0.549947L0.124664 7.8287C0.0383472 7.98887 -0.00481098 8.16875 -0.000569449 8.35066C0.00367208 8.53256 0.0551674 8.71024 0.148856 8.86622C0.242546 9.0222 0.375205 9.15112 0.533798 9.24031C0.692391 9.32951 0.871462 9.37591 1.05341 9.37495H8.94591C9.12031 9.37495 9.29203 9.33202 9.44591 9.24995C9.56783 9.18524 9.67572 9.09703 9.76338 8.99041C9.85104 8.8838 9.91672 8.76088 9.95663 8.62876C9.99655 8.49663 10.0099 8.35791 9.99595 8.22059C9.98199 8.08328 9.94036 7.95009 9.87466 7.8287ZM4.99966 8.12495C4.87605 8.12495 4.75521 8.08829 4.65243 8.01962C4.54965 7.95094 4.46954 7.85333 4.42224 7.73912C4.37493 7.62492 4.36256 7.49925 4.38667 7.37802C4.41079 7.25678 4.47031 7.14541 4.55772 7.05801C4.64513 6.9706 4.75649 6.91107 4.87773 6.88696C4.99897 6.86284 5.12464 6.87522 5.23884 6.92252C5.35304 6.96983 5.45066 7.04993 5.51933 7.15272C5.58801 7.2555 5.62466 7.37633 5.62466 7.49995C5.62466 7.66571 5.55882 7.82468 5.44161 7.94189C5.3244 8.0591 5.16542 8.12495 4.99966 8.12495ZM5.62466 5.93745C5.62466 6.02033 5.59174 6.09981 5.53313 6.15842C5.47453 6.21702 5.39504 6.24995 5.31216 6.24995H4.68716C4.60428 6.24995 4.5248 6.21702 4.46619 6.15842C4.40759 6.09981 4.37466 6.02033 4.37466 5.93745V3.43745C4.37466 3.35457 4.40759 3.27508 4.46619 3.21648C4.5248 3.15787 4.60428 3.12495 4.68716 3.12495H5.31216C5.39504 3.12495 5.47453 3.15787 5.53313 3.21648C5.59174 3.27508 5.62466 3.35457 5.62466 3.43745V5.93745Z" fill="currentColor" />
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_14732_6105">
|
||||||
|
<rect width="10" height="10" />
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/alert.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -11,9 +11,34 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'AbrilFatface';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: url('<?php echo e(storage_path("fonts/AbrilFatface-Regular.ttf")); ?>') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Montserrat';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: url('<?php echo e(storage_path("fonts/Montserrat-Regular.ttf")); ?>') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Montserrat';
|
||||||
|
/* font-style: normal; */
|
||||||
|
font-weight: 700;
|
||||||
|
src: url('<?php echo e(storage_path("fonts/Montserrat-Bold.ttf")); ?>') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Montserrat', sans-serif;
|
font-family: Montserrat;
|
||||||
color: #333;
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
@@ -29,72 +54,72 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 8px;
|
||||||
border-bottom: 1px solid #1a1a1a;
|
border-bottom: 1px solid #1a1a1a;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
|
gap: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.company-info {
|
||||||
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.company-info h1 {
|
.company-info h1 {
|
||||||
font-family: Abril Fatface;
|
font-family: AbrilFatface, Georgia, serif;
|
||||||
font-size: 36px;
|
|
||||||
color: #1a1a1a;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
font-size: 36px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.company-details h2 {
|
||||||
|
font-family: AbrilFatface;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 20px;
|
||||||
|
/* margin-bottom: 10px; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.company-details {
|
.company-details {
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
color: #666;
|
line-height: 1.2;
|
||||||
line-height: 1.5;
|
}
|
||||||
|
|
||||||
|
.invoice-details h2 {
|
||||||
|
font-family: AbrilFatface;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 20px;
|
||||||
|
/* margin-bottom: 10px; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.invoice-details {
|
.invoice-details {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
/* line-height: 1.5; */
|
flex-shrink: 0;
|
||||||
}
|
|
||||||
|
|
||||||
.invoice-details h2 {
|
|
||||||
font-size: 28px;
|
|
||||||
color: #1a1a1a;
|
|
||||||
font-weight: normal;
|
|
||||||
/* margin-bottom: 20px; */
|
|
||||||
font-family: 'AbrilFatface', Georgia, serif;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.detail-row {
|
.detail-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
/* margin-bottom: 8px; */
|
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detail-row strong {
|
.detail-row strong {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
color: #666;
|
|
||||||
width: 120px;
|
width: 120px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detail-row span {
|
.detail-row span {
|
||||||
color: #1a1a1a;
|
|
||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-title {
|
.customer-info h3 {
|
||||||
|
font-family: AbrilFatface, Georgia, serif;
|
||||||
|
font-weight: normal;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: 700;
|
/* text-transform: uppercase; */
|
||||||
text-transform: uppercase;
|
/* letter-spacing: 0.5px; */
|
||||||
letter-spacing: 1px;
|
|
||||||
color: #666;
|
|
||||||
margin-top: 20px;
|
|
||||||
/* margin-bottom: 20px; */
|
|
||||||
/* border-bottom: 1px solid #e0e0e0; */
|
|
||||||
padding-bottom: 12px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.customer-info {
|
.customer-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
/* gap: 80px; */
|
|
||||||
/* margin-bottom: 40px; */
|
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,63 +127,59 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.customer-info h3 {
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 700;
|
|
||||||
text-transform: uppercase;
|
|
||||||
letter-spacing: 0.5px;
|
|
||||||
color: #666;
|
|
||||||
/* margin-bottom: 8px; */
|
|
||||||
}
|
|
||||||
|
|
||||||
.customer-info p {
|
.customer-info p {
|
||||||
color: #1a1a1a;
|
line-height: 1.2;
|
||||||
/* margin-bottom: 4px; */
|
}
|
||||||
line-height: 1.5;
|
|
||||||
|
.section-title {
|
||||||
|
font-family: AbrilFatface, Georgia, serif;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 20px;
|
||||||
|
/* margin-top: 20px; */
|
||||||
|
padding-bottom: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
margin-bottom: 40px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f3f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: 700;
|
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 0.5px;
|
letter-spacing: 0.5px;
|
||||||
color: #666;
|
padding: 2px 16px;
|
||||||
padding: 12px 16px;
|
|
||||||
text-align: left;
|
text-align: left;
|
||||||
/* border: 1px solid #e0e0e0; */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
padding: 10px 10px;
|
padding: 0px 10px;
|
||||||
/* border: 1px solid #e0e0e0; */
|
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: #1a1a1a;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tr:nth-child(even) {
|
tr:nth-child(even) {
|
||||||
background-color: #fafafa;
|
background-color: #f5f3f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-name {
|
.item-name {
|
||||||
font-weight: 500;
|
font-family: AbrilFatface, Georgia, serif;
|
||||||
|
font-weight: normal;
|
||||||
|
padding: 0px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-label {
|
.item-label {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: #999;
|
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 0.5px;
|
letter-spacing: 0.5px;
|
||||||
/* margin-top: 2px; */
|
padding: 0px 20px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.qty {
|
.qty {
|
||||||
@@ -170,70 +191,40 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.totals-section {
|
.totals-section {
|
||||||
margin-bottom: 40px;
|
/* margin-bottom: 40px; */
|
||||||
|
background-color: #e8dcd8;
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.totals-box {
|
.totals-box {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
width: 350px;
|
width: 350px;
|
||||||
|
padding: 0px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.total-row {
|
.total-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 12px 16px;
|
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
padding: 0px 16px;
|
||||||
|
|
||||||
.total-row strong {
|
|
||||||
color: #1a1a1a;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-row span {
|
|
||||||
color: #666;
|
|
||||||
text-align: right;
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-row.subtotal strong {
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-row.shipping strong {
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.total-row.grand-total {
|
.total-row.grand-total {
|
||||||
/* background-color: #f5f5f5; */
|
font-family: AbrilFatface, Georgia, serif;
|
||||||
/* border: 1px solid #e0e0e0; */
|
font-size: 30px;
|
||||||
font-size: 15px;
|
padding: 0px 16px;
|
||||||
font-weight: 700;
|
|
||||||
padding: 12px 16px;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.total-row.grand-total strong {
|
|
||||||
color: #1a1a1a;
|
|
||||||
font-family: 'AbrilFatface', Georgia, serif;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-row.grand-total span {
|
|
||||||
color: #1a1a1a;
|
|
||||||
font-size: 16px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-section {
|
.footer-section {
|
||||||
margin-top: 60px;
|
margin-top: 60px;
|
||||||
padding-top: 30px;
|
/* padding-top: 30px; */
|
||||||
border-top: 1px solid #e0e0e0;
|
/* border-top: 1px solid #e0e0e0; */
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #999;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thank-you {
|
.thank-you {
|
||||||
color: #666;
|
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -249,9 +240,9 @@
|
|||||||
<div class="invoice-header">
|
<div class="invoice-header">
|
||||||
<div class="company-info">
|
<div class="company-info">
|
||||||
|
|
||||||
<h1>INVOICE</h1>
|
<h1>Invoice</h1>
|
||||||
<div class="company-details">
|
<div class="company-details">
|
||||||
<h2>ADDITIONAL DESIGN</h2>
|
<h2>Additional Design</h2>
|
||||||
<p>registered trading name of</p>
|
<p>registered trading name of</p>
|
||||||
<p>TWO TALES & CO. (PTY) LTD</p>
|
<p>TWO TALES & CO. (PTY) LTD</p>
|
||||||
<p>REG: 2014/260746/07</p>
|
<p>REG: 2014/260746/07</p>
|
||||||
@@ -261,7 +252,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="invoice-details">
|
<div class="invoice-details">
|
||||||
<h3>#<?php echo e($order->order_number); ?></h3>
|
<h2>#<?php echo e($order->order_number); ?></h2>
|
||||||
<div class="detail-row">
|
<div class="detail-row">
|
||||||
<strong>Date:</strong>
|
<strong>Date:</strong>
|
||||||
<span><?php echo e($order->created_at->format('d M Y')); ?></span>
|
<span><?php echo e($order->created_at->format('d M Y')); ?></span>
|
||||||
@@ -280,20 +271,16 @@
|
|||||||
<!-- Customer Info -->
|
<!-- Customer Info -->
|
||||||
<div class="customer-info">
|
<div class="customer-info">
|
||||||
<div>
|
<div>
|
||||||
<h3>Bill To</h3>
|
<h3>Customer Info:</h3>
|
||||||
<p><?php echo e($order->customer_name); ?></p>
|
<p><?php echo e($order->customer_name); ?></p>
|
||||||
<p><?php echo e($order->customer_email); ?></p>
|
<p><?php echo e($order->customer_email); ?></p>
|
||||||
<p><?php echo e($order->customer_phone); ?></p>
|
<p><?php echo e($order->customer_phone); ?></p>
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h3>Ship To</h3>
|
|
||||||
<p><?php echo e($order->shipping_address); ?></p>
|
<p><?php echo e($order->shipping_address); ?></p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Items Table -->
|
<!-- Items Table -->
|
||||||
<div class="section-title">Order Items</div>
|
<div class="section-title">Order Items:</div>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -342,13 +329,13 @@
|
|||||||
</div>
|
</div>
|
||||||
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
<div class="total-row grand-total">
|
<div class="total-row grand-total">
|
||||||
<strong>Total</strong>
|
Total
|
||||||
<span>R <?php echo e(number_format($order->total, 2)); ?></span>
|
<span>R <?php echo e(number_format($order->total, 2)); ?></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div style="text-align: center;">
|
<div style="text-align: center; background-color: #000; color:#fff; border-radius: 60px; font-size: 20px; margin-top: 20px; padding-bottom: 10px; width: 200px; margin-left: auto; margin-right: auto;">
|
||||||
<strong>PAID VIA YOCO</strong>
|
<strong>PAID VIA YOCO</strong>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,393 @@
|
|||||||
|
<?php if (isset($component)) { $__componentOriginalbbd4eeea836234825f7514ed20d2d52d = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalbbd4eeea836234825f7514ed20d2d52d = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.layout','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::layout'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes([]); ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal1e2fb8a385bff5b6574eeb687cee100b = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.section-container','data' => ['class' => 'px-6 py-0 sm:py-0']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::section-container'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'px-6 py-0 sm:py-0']); ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal6769184c81828596613858780a973bc6 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal6769184c81828596613858780a973bc6 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.topbar','data' => ['title' => $exception->title(),'markdown' => $exceptionAsMarkdown]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::topbar'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['title' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->title()),'markdown' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exceptionAsMarkdown)]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal6769184c81828596613858780a973bc6)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal6769184c81828596613858780a973bc6; ?>
|
||||||
|
<?php unset($__attributesOriginal6769184c81828596613858780a973bc6); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal6769184c81828596613858780a973bc6)): ?>
|
||||||
|
<?php $component = $__componentOriginal6769184c81828596613858780a973bc6; ?>
|
||||||
|
<?php unset($__componentOriginal6769184c81828596613858780a973bc6); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b; ?>
|
||||||
|
<?php unset($__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal1e2fb8a385bff5b6574eeb687cee100b)): ?>
|
||||||
|
<?php $component = $__componentOriginal1e2fb8a385bff5b6574eeb687cee100b; ?>
|
||||||
|
<?php unset($__componentOriginal1e2fb8a385bff5b6574eeb687cee100b); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal40a3de7997c05e5562c4104d90e9b634 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal40a3de7997c05e5562c4104d90e9b634 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.separator','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::separator'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes([]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal40a3de7997c05e5562c4104d90e9b634)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal40a3de7997c05e5562c4104d90e9b634; ?>
|
||||||
|
<?php unset($__attributesOriginal40a3de7997c05e5562c4104d90e9b634); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal40a3de7997c05e5562c4104d90e9b634)): ?>
|
||||||
|
<?php $component = $__componentOriginal40a3de7997c05e5562c4104d90e9b634; ?>
|
||||||
|
<?php unset($__componentOriginal40a3de7997c05e5562c4104d90e9b634); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal1e2fb8a385bff5b6574eeb687cee100b = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.section-container','data' => ['class' => 'flex flex-col gap-8 py-0 sm:py-0']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::section-container'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'flex flex-col gap-8 py-0 sm:py-0']); ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.header','data' => ['exception' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::header'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557; ?>
|
||||||
|
<?php unset($__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557)): ?>
|
||||||
|
<?php $component = $__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557; ?>
|
||||||
|
<?php unset($__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b; ?>
|
||||||
|
<?php unset($__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal1e2fb8a385bff5b6574eeb687cee100b)): ?>
|
||||||
|
<?php $component = $__componentOriginal1e2fb8a385bff5b6574eeb687cee100b; ?>
|
||||||
|
<?php unset($__componentOriginal1e2fb8a385bff5b6574eeb687cee100b); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal40a3de7997c05e5562c4104d90e9b634 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal40a3de7997c05e5562c4104d90e9b634 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.separator','data' => ['class' => '-mt-5 -z-10']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::separator'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => '-mt-5 -z-10']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal40a3de7997c05e5562c4104d90e9b634)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal40a3de7997c05e5562c4104d90e9b634; ?>
|
||||||
|
<?php unset($__attributesOriginal40a3de7997c05e5562c4104d90e9b634); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal40a3de7997c05e5562c4104d90e9b634)): ?>
|
||||||
|
<?php $component = $__componentOriginal40a3de7997c05e5562c4104d90e9b634; ?>
|
||||||
|
<?php unset($__componentOriginal40a3de7997c05e5562c4104d90e9b634); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal1e2fb8a385bff5b6574eeb687cee100b = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.section-container','data' => ['class' => 'flex flex-col gap-8 pt-14']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::section-container'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'flex flex-col gap-8 pt-14']); ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal92c1a431b4816bac5d5a20d0fc1238ab = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.trace','data' => ['exception' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::trace'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab; ?>
|
||||||
|
<?php unset($__attributesOriginal92c1a431b4816bac5d5a20d0fc1238ab); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal92c1a431b4816bac5d5a20d0fc1238ab)): ?>
|
||||||
|
<?php $component = $__componentOriginal92c1a431b4816bac5d5a20d0fc1238ab; ?>
|
||||||
|
<?php unset($__componentOriginal92c1a431b4816bac5d5a20d0fc1238ab); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginalb73d2d8821ad40718c243f895ec0c546 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalb73d2d8821ad40718c243f895ec0c546 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.query','data' => ['queries' => $exception->applicationQueries()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::query'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['queries' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->applicationQueries())]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalb73d2d8821ad40718c243f895ec0c546)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalb73d2d8821ad40718c243f895ec0c546; ?>
|
||||||
|
<?php unset($__attributesOriginalb73d2d8821ad40718c243f895ec0c546); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalb73d2d8821ad40718c243f895ec0c546)): ?>
|
||||||
|
<?php $component = $__componentOriginalb73d2d8821ad40718c243f895ec0c546; ?>
|
||||||
|
<?php unset($__componentOriginalb73d2d8821ad40718c243f895ec0c546); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b; ?>
|
||||||
|
<?php unset($__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal1e2fb8a385bff5b6574eeb687cee100b)): ?>
|
||||||
|
<?php $component = $__componentOriginal1e2fb8a385bff5b6574eeb687cee100b; ?>
|
||||||
|
<?php unset($__componentOriginal1e2fb8a385bff5b6574eeb687cee100b); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal40a3de7997c05e5562c4104d90e9b634 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal40a3de7997c05e5562c4104d90e9b634 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.separator','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::separator'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes([]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal40a3de7997c05e5562c4104d90e9b634)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal40a3de7997c05e5562c4104d90e9b634; ?>
|
||||||
|
<?php unset($__attributesOriginal40a3de7997c05e5562c4104d90e9b634); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal40a3de7997c05e5562c4104d90e9b634)): ?>
|
||||||
|
<?php $component = $__componentOriginal40a3de7997c05e5562c4104d90e9b634; ?>
|
||||||
|
<?php unset($__componentOriginal40a3de7997c05e5562c4104d90e9b634); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal1e2fb8a385bff5b6574eeb687cee100b = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.section-container','data' => ['class' => 'flex flex-col gap-12']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::section-container'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'flex flex-col gap-12']); ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalcc330c991c1b19cde28fea414de1b6cb = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalcc330c991c1b19cde28fea414de1b6cb = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.request-header','data' => ['headers' => $exception->requestHeaders()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::request-header'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['headers' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->requestHeaders())]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalcc330c991c1b19cde28fea414de1b6cb)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalcc330c991c1b19cde28fea414de1b6cb; ?>
|
||||||
|
<?php unset($__attributesOriginalcc330c991c1b19cde28fea414de1b6cb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalcc330c991c1b19cde28fea414de1b6cb)): ?>
|
||||||
|
<?php $component = $__componentOriginalcc330c991c1b19cde28fea414de1b6cb; ?>
|
||||||
|
<?php unset($__componentOriginalcc330c991c1b19cde28fea414de1b6cb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal3ce7d5064193f9b8bde76eb6792e715a = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal3ce7d5064193f9b8bde76eb6792e715a = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.request-body','data' => ['body' => $exception->requestBody()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::request-body'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['body' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->requestBody())]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal3ce7d5064193f9b8bde76eb6792e715a)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal3ce7d5064193f9b8bde76eb6792e715a; ?>
|
||||||
|
<?php unset($__attributesOriginal3ce7d5064193f9b8bde76eb6792e715a); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal3ce7d5064193f9b8bde76eb6792e715a)): ?>
|
||||||
|
<?php $component = $__componentOriginal3ce7d5064193f9b8bde76eb6792e715a; ?>
|
||||||
|
<?php unset($__componentOriginal3ce7d5064193f9b8bde76eb6792e715a); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal40aab92597234e6686a03fbf91514afb = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal40aab92597234e6686a03fbf91514afb = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.routing','data' => ['routing' => $exception->applicationRouteContext()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::routing'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['routing' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->applicationRouteContext())]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal40aab92597234e6686a03fbf91514afb)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal40aab92597234e6686a03fbf91514afb; ?>
|
||||||
|
<?php unset($__attributesOriginal40aab92597234e6686a03fbf91514afb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal40aab92597234e6686a03fbf91514afb)): ?>
|
||||||
|
<?php $component = $__componentOriginal40aab92597234e6686a03fbf91514afb; ?>
|
||||||
|
<?php unset($__componentOriginal40aab92597234e6686a03fbf91514afb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal982e77712eb0069b2ae32176000f422d = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal982e77712eb0069b2ae32176000f422d = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.routing-parameter','data' => ['routeParameters' => $exception->applicationRouteParametersContext()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::routing-parameter'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['routeParameters' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->applicationRouteParametersContext())]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal982e77712eb0069b2ae32176000f422d)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal982e77712eb0069b2ae32176000f422d; ?>
|
||||||
|
<?php unset($__attributesOriginal982e77712eb0069b2ae32176000f422d); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal982e77712eb0069b2ae32176000f422d)): ?>
|
||||||
|
<?php $component = $__componentOriginal982e77712eb0069b2ae32176000f422d; ?>
|
||||||
|
<?php unset($__componentOriginal982e77712eb0069b2ae32176000f422d); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b; ?>
|
||||||
|
<?php unset($__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal1e2fb8a385bff5b6574eeb687cee100b)): ?>
|
||||||
|
<?php $component = $__componentOriginal1e2fb8a385bff5b6574eeb687cee100b; ?>
|
||||||
|
<?php unset($__componentOriginal1e2fb8a385bff5b6574eeb687cee100b); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal40a3de7997c05e5562c4104d90e9b634 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal40a3de7997c05e5562c4104d90e9b634 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.separator','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::separator'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes([]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal40a3de7997c05e5562c4104d90e9b634)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal40a3de7997c05e5562c4104d90e9b634; ?>
|
||||||
|
<?php unset($__attributesOriginal40a3de7997c05e5562c4104d90e9b634); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal40a3de7997c05e5562c4104d90e9b634)): ?>
|
||||||
|
<?php $component = $__componentOriginal40a3de7997c05e5562c4104d90e9b634; ?>
|
||||||
|
<?php unset($__componentOriginal40a3de7997c05e5562c4104d90e9b634); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginal1e2fb8a385bff5b6574eeb687cee100b = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.section-container','data' => ['class' => 'pb-0 sm:pb-0']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::section-container'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'pb-0 sm:pb-0']); ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal00da9961ee0aae6b56664f2b481f9f2e = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal00da9961ee0aae6b56664f2b481f9f2e = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.laravel-ascii-spotlight','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::laravel-ascii-spotlight'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes([]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal00da9961ee0aae6b56664f2b481f9f2e)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal00da9961ee0aae6b56664f2b481f9f2e; ?>
|
||||||
|
<?php unset($__attributesOriginal00da9961ee0aae6b56664f2b481f9f2e); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal00da9961ee0aae6b56664f2b481f9f2e)): ?>
|
||||||
|
<?php $component = $__componentOriginal00da9961ee0aae6b56664f2b481f9f2e; ?>
|
||||||
|
<?php unset($__componentOriginal00da9961ee0aae6b56664f2b481f9f2e); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b; ?>
|
||||||
|
<?php unset($__attributesOriginal1e2fb8a385bff5b6574eeb687cee100b); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal1e2fb8a385bff5b6574eeb687cee100b)): ?>
|
||||||
|
<?php $component = $__componentOriginal1e2fb8a385bff5b6574eeb687cee100b; ?>
|
||||||
|
<?php unset($__componentOriginal1e2fb8a385bff5b6574eeb687cee100b); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalbbd4eeea836234825f7514ed20d2d52d)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalbbd4eeea836234825f7514ed20d2d52d; ?>
|
||||||
|
<?php unset($__attributesOriginalbbd4eeea836234825f7514ed20d2d52d); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalbbd4eeea836234825f7514ed20d2d52d)): ?>
|
||||||
|
<?php $component = $__componentOriginalbbd4eeea836234825f7514ed20d2d52d; ?>
|
||||||
|
<?php unset($__componentOriginalbbd4eeea836234825f7514ed20d2d52d); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/show.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" <?php echo e($attributes); ?>>
|
||||||
|
<path d="M5.25 9L9.25 5L5.25 1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M0.75 9L4.75 5L0.75 1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/chevrons-right.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 537 B |
@@ -0,0 +1,60 @@
|
|||||||
|
# <?php echo e($exception->class()); ?> - <?php echo $exception->title(); ?>
|
||||||
|
|
||||||
|
|
||||||
|
<?php echo $exception->message(); ?>
|
||||||
|
|
||||||
|
|
||||||
|
PHP <?php echo e(PHP_VERSION); ?>
|
||||||
|
|
||||||
|
Laravel <?php echo e(app()->version()); ?>
|
||||||
|
|
||||||
|
<?php echo e($exception->request()->httpHost()); ?>
|
||||||
|
|
||||||
|
|
||||||
|
## Stack Trace
|
||||||
|
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__currentLoopData = $exception->frames(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $frame): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||||
|
<?php echo e($index); ?> - <?php echo e($frame->file()); ?>:<?php echo e($frame->line()); ?>
|
||||||
|
|
||||||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
|
||||||
|
## Request
|
||||||
|
|
||||||
|
<?php echo e($exception->request()->method()); ?> <?php echo e(\Illuminate\Support\Str::start($exception->request()->path(), '/')); ?>
|
||||||
|
|
||||||
|
|
||||||
|
## Headers
|
||||||
|
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__empty_1 = true; $__currentLoopData = $exception->requestHeaders(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
|
||||||
|
* **<?php echo e($key); ?>**: <?php echo $value; ?>
|
||||||
|
|
||||||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
|
||||||
|
No header data available.
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
|
||||||
|
## Route Context
|
||||||
|
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__empty_1 = true; $__currentLoopData = $exception->applicationRouteContext(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $name => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
|
||||||
|
<?php echo e($name); ?>: <?php echo $value; ?>
|
||||||
|
|
||||||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
|
||||||
|
No routing data available.
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
|
||||||
|
## Route Parameters
|
||||||
|
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($routeParametersContext = $exception->applicationRouteParametersContext()): ?>
|
||||||
|
<?php echo $routeParametersContext; ?>
|
||||||
|
|
||||||
|
<?php else: ?>
|
||||||
|
No route parameter data available.
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
|
||||||
|
## Database Queries
|
||||||
|
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__empty_1 = true; $__currentLoopData = $exception->applicationQueries(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as ['connectionName' => $connectionName, 'sql' => $sql, 'time' => $time]): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
|
||||||
|
* <?php echo e($connectionName); ?> - <?php echo $sql; ?> (<?php echo e($time); ?> ms)
|
||||||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
|
||||||
|
No database queries detected.
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/markdown.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<?php $__env->startSection('title', __('Not Found')); ?>
|
||||||
|
<?php $__env->startSection('code', '404'); ?>
|
||||||
|
<?php $__env->startSection('message', __('Not Found')); ?>
|
||||||
|
|
||||||
|
<?php echo $__env->make('errors::minimal', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/404.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['exception']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['exception']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div class="flex flex-col pt-8 sm:pt-16 overflow-x-auto">
|
||||||
|
<div class="flex flex-col gap-5 mb-8">
|
||||||
|
<h1 class="text-3xl font-semibold text-neutral-950 dark:text-white"><?php echo e($exception->class()); ?></h1>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.file-with-line','data' => ['frame' => $exception->frames()->first(),'class' => '-mt-3 text-xs']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::file-with-line'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->frames()->first()),'class' => '-mt-3 text-xs']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d; ?>
|
||||||
|
<?php unset($__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d)): ?>
|
||||||
|
<?php $component = $__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d; ?>
|
||||||
|
<?php unset($__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<p class="text-xl font-light text-neutral-800 dark:text-neutral-300">
|
||||||
|
<?php echo e($exception->message()); ?>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex items-start gap-2 mb-8 sm:mb-16">
|
||||||
|
<div class="bg-white dark:bg-white/[3%] border border-neutral-200 dark:border-white/10 divide-x divide-neutral-200 dark:divide-white/10 rounded-md shadow-xs flex items-center gap-0.5">
|
||||||
|
<div class="flex items-center gap-1.5 h-6 px-[6px] font-mono text-[13px]">
|
||||||
|
<span class="text-neutral-400 dark:text-neutral-500">LARAVEL</span>
|
||||||
|
<span class="text-neutral-500 dark:text-neutral-300"><?php echo e(app()->version()); ?></span>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center gap-1.5 h-6 px-[6px] font-mono text-[13px]">
|
||||||
|
<span class="text-neutral-400 dark:text-neutral-500">PHP</span>
|
||||||
|
<span class="text-neutral-500 dark:text-neutral-300"><?php echo e(PHP_VERSION); ?></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.badge','data' => ['type' => 'error']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::badge'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['type' => 'error']); ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalebc8ec9a834a8051f56913d6745a7050 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalebc8ec9a834a8051f56913d6745a7050 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.alert','data' => ['class' => 'w-2.5 h-2.5']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.alert'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-2.5 h-2.5']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalebc8ec9a834a8051f56913d6745a7050)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalebc8ec9a834a8051f56913d6745a7050; ?>
|
||||||
|
<?php unset($__attributesOriginalebc8ec9a834a8051f56913d6745a7050); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalebc8ec9a834a8051f56913d6745a7050)): ?>
|
||||||
|
<?php $component = $__componentOriginalebc8ec9a834a8051f56913d6745a7050; ?>
|
||||||
|
<?php unset($__componentOriginalebc8ec9a834a8051f56913d6745a7050); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
UNHANDLED
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb; ?>
|
||||||
|
<?php unset($__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb)): ?>
|
||||||
|
<?php $component = $__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb; ?>
|
||||||
|
<?php unset($__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.badge','data' => ['type' => 'error','variant' => 'solid']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::badge'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['type' => 'error','variant' => 'solid']); ?>
|
||||||
|
CODE <?php echo e($exception->code()); ?>
|
||||||
|
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb; ?>
|
||||||
|
<?php unset($__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb)): ?>
|
||||||
|
<?php $component = $__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb; ?>
|
||||||
|
<?php unset($__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginalb581a7e3a55d371fae986833ecafa668 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalb581a7e3a55d371fae986833ecafa668 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.request-url','data' => ['exception' => $exception,'request' => $exception->request(),'class' => 'relative z-50']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::request-url'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception),'request' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->request()),'class' => 'relative z-50']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalb581a7e3a55d371fae986833ecafa668)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalb581a7e3a55d371fae986833ecafa668; ?>
|
||||||
|
<?php unset($__attributesOriginalb581a7e3a55d371fae986833ecafa668); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalb581a7e3a55d371fae986833ecafa668)): ?>
|
||||||
|
<?php $component = $__componentOriginalb581a7e3a55d371fae986833ecafa668; ?>
|
||||||
|
<?php unset($__componentOriginalb581a7e3a55d371fae986833ecafa668); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/header.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg" <?php echo e($attributes); ?>>
|
||||||
|
<path d="M5.125 0.75L0.875 5L5.125 9.25" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/chevron-left.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 435 B |
|
After Width: | Height: | Size: 474 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg" <?php echo e($attributes); ?>>
|
||||||
|
<path d="M0.875 9.25L5.125 5L0.875 0.75" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/chevron-right.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 436 B |
@@ -0,0 +1,69 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['routing']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['routing']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div class="flex flex-col gap-3">
|
||||||
|
<h2 class="text-lg font-semibold">Routing</h2>
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__empty_1 = true; $__currentLoopData = $routing; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
|
||||||
|
<div class="flex max-w-full items-baseline gap-2 h-10 text-sm font-mono">
|
||||||
|
<div class="uppercase text-neutral-500 dark:text-neutral-400 shrink-0"><?php echo e($key); ?></div>
|
||||||
|
<div class="min-w-6 grow h-3 border-b-2 border-dotted border-neutral-300 dark:border-white/20"></div>
|
||||||
|
<div class="truncate text-neutral-900 dark:text-white">
|
||||||
|
<span data-tippy-content="<?php echo e($value); ?>">
|
||||||
|
<?php echo e($value); ?>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal612ffe32146e3bd2ac6ba6076cca9520 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.empty-state','data' => ['message' => 'No routing context']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::empty-state'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['message' => 'No routing context']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520; ?>
|
||||||
|
<?php unset($__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal612ffe32146e3bd2ac6ba6076cca9520)): ?>
|
||||||
|
<?php $component = $__componentOriginal612ffe32146e3bd2ac6ba6076cca9520; ?>
|
||||||
|
<?php unset($__componentOriginal612ffe32146e3bd2ac6ba6076cca9520); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/routing.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24" <?php echo e($attributes); ?>>
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/check.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 379 B |
@@ -0,0 +1,11 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" <?php echo e($attributes); ?>>
|
||||||
|
<g clip-path="url(#clip0_14732_6079)">
|
||||||
|
<path d="M4.25 4.25012V1.25012H10.75V7.75012H7.75M7.75 4.25012H1.25V10.7501H7.75V4.25012Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_14732_6079">
|
||||||
|
<rect width="12" height="12" />
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/copy.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 637 B |
@@ -0,0 +1,167 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['exception', 'request']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['exception', 'request']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div
|
||||||
|
x-data="{
|
||||||
|
copied: false,
|
||||||
|
async copyToClipboard() {
|
||||||
|
try {
|
||||||
|
await window.copyToClipboard('<?php echo e($request->fullUrl()); ?>');
|
||||||
|
this.copied = true;
|
||||||
|
setTimeout(() => { this.copied = false }, 3000);
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Failed to copy the requestURL: ', err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
<?php echo e($attributes->merge(['class' => "bg-white dark:bg-[#1a1a1a] border border-neutral-200 dark:border-white/10 rounded-lg flex items-center justify-between h-10 px-2 shadow-xs"])); ?>
|
||||||
|
|
||||||
|
>
|
||||||
|
<div class="flex items-center gap-3 w-full">
|
||||||
|
<?php if (isset($component)) { $__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.badge','data' => ['type' => 'error','variant' => 'solid']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::badge'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['type' => 'error','variant' => 'solid']); ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalebc8ec9a834a8051f56913d6745a7050 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalebc8ec9a834a8051f56913d6745a7050 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.alert','data' => ['class' => 'w-2.5 h-2.5']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.alert'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-2.5 h-2.5']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalebc8ec9a834a8051f56913d6745a7050)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalebc8ec9a834a8051f56913d6745a7050; ?>
|
||||||
|
<?php unset($__attributesOriginalebc8ec9a834a8051f56913d6745a7050); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalebc8ec9a834a8051f56913d6745a7050)): ?>
|
||||||
|
<?php $component = $__componentOriginalebc8ec9a834a8051f56913d6745a7050; ?>
|
||||||
|
<?php unset($__componentOriginalebc8ec9a834a8051f56913d6745a7050); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php echo e($exception->httpStatusCode()); ?>
|
||||||
|
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb; ?>
|
||||||
|
<?php unset($__attributesOriginal0bc865510ef3ecddbe48edc4e8cc9ddb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb)): ?>
|
||||||
|
<?php $component = $__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb; ?>
|
||||||
|
<?php unset($__componentOriginal0bc865510ef3ecddbe48edc4e8cc9ddb); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal5131cdd8ffd44ce9fe7ed2c3030dd413 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal5131cdd8ffd44ce9fe7ed2c3030dd413 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.http-method','data' => ['method' => ''.e($request->method()).'']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::http-method'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['method' => ''.e($request->method()).'']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal5131cdd8ffd44ce9fe7ed2c3030dd413)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal5131cdd8ffd44ce9fe7ed2c3030dd413; ?>
|
||||||
|
<?php unset($__attributesOriginal5131cdd8ffd44ce9fe7ed2c3030dd413); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal5131cdd8ffd44ce9fe7ed2c3030dd413)): ?>
|
||||||
|
<?php $component = $__componentOriginal5131cdd8ffd44ce9fe7ed2c3030dd413; ?>
|
||||||
|
<?php unset($__componentOriginal5131cdd8ffd44ce9fe7ed2c3030dd413); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<div class="flex-1 text-sm font-light truncate text-neutral-950 dark:text-white">
|
||||||
|
<span data-tippy-content="<?php echo e($request->fullUrl()); ?>">
|
||||||
|
<?php echo e($request->fullUrl()); ?>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
x-cloak
|
||||||
|
@click="copyToClipboard()"
|
||||||
|
class="<?php echo \Illuminate\Support\Arr::toCssClasses([
|
||||||
|
"rounded-md w-6 h-6 flex flex-shrink-0 items-center justify-center cursor-pointer border transition-colors duration-200 ease-in-out",
|
||||||
|
"bg-white/5 border-neutral-200 hover:bg-neutral-100 dark:bg-white/5 dark:border-white/10 dark:hover:bg-white/10",
|
||||||
|
]); ?>"
|
||||||
|
>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal8894ff2e6e6bd543865d608162806b35 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal8894ff2e6e6bd543865d608162806b35 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.copy','data' => ['class' => 'w-3 h-3 text-neutral-400','xShow' => '!copied']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.copy'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3 text-neutral-400','x-show' => '!copied']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal8894ff2e6e6bd543865d608162806b35)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal8894ff2e6e6bd543865d608162806b35; ?>
|
||||||
|
<?php unset($__attributesOriginal8894ff2e6e6bd543865d608162806b35); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal8894ff2e6e6bd543865d608162806b35)): ?>
|
||||||
|
<?php $component = $__componentOriginal8894ff2e6e6bd543865d608162806b35; ?>
|
||||||
|
<?php unset($__componentOriginal8894ff2e6e6bd543865d608162806b35); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal394a4f59b8774713925fcf456ba90b57 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal394a4f59b8774713925fcf456ba90b57 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.check','data' => ['class' => 'w-3 h-3 text-emerald-500','xShow' => 'copied']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.check'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3 text-emerald-500','x-show' => 'copied']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal394a4f59b8774713925fcf456ba90b57)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal394a4f59b8774713925fcf456ba90b57; ?>
|
||||||
|
<?php unset($__attributesOriginal394a4f59b8774713925fcf456ba90b57); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal394a4f59b8774713925fcf456ba90b57)): ?>
|
||||||
|
<?php $component = $__componentOriginal394a4f59b8774713925fcf456ba90b57; ?>
|
||||||
|
<?php unset($__componentOriginal394a4f59b8774713925fcf456ba90b57); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/request-url.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['message']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['message']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div class="bg-white/[2%] border border-neutral-200 dark:border-neutral-800 rounded-md w-full p-5 uppercase text-sm text-center font-mono shadow-xs text-neutral-600 dark:text-neutral-400">
|
||||||
|
<span class="text-neutral-400 dark:text-neutral-600">// </span><?php echo e($message); ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/empty-state.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,108 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['exception']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['exception']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div class="flex flex-col gap-2.5 bg-neutral-50 dark:bg-white/1 border border-neutral-200 dark:border-neutral-800 rounded-xl p-2.5 shadow-xs">
|
||||||
|
<div class="flex items-center gap-2.5 p-2">
|
||||||
|
<div class="bg-white dark:bg-neutral-800 border border-neutral-200 dark:border-white/5 rounded-md w-6 h-6 flex items-center justify-center p-1">
|
||||||
|
<?php if (isset($component)) { $__componentOriginalebc8ec9a834a8051f56913d6745a7050 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalebc8ec9a834a8051f56913d6745a7050 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.alert','data' => ['class' => 'w-2.5 h-2.5 text-blue-500 dark:text-emerald-500']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.alert'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-2.5 h-2.5 text-blue-500 dark:text-emerald-500']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalebc8ec9a834a8051f56913d6745a7050)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalebc8ec9a834a8051f56913d6745a7050; ?>
|
||||||
|
<?php unset($__attributesOriginalebc8ec9a834a8051f56913d6745a7050); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalebc8ec9a834a8051f56913d6745a7050)): ?>
|
||||||
|
<?php $component = $__componentOriginalebc8ec9a834a8051f56913d6745a7050; ?>
|
||||||
|
<?php unset($__componentOriginalebc8ec9a834a8051f56913d6745a7050); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<h3 class="text-base font-semibold text-neutral-900 dark:text-white">Exception trace</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex flex-col gap-1.5">
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__currentLoopData = $exception->frameGroups(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $group): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($group['is_vendor']): ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal449787012edfba29f0e80f325065fad5 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal449787012edfba29f0e80f325065fad5 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.vendor-frames','data' => ['frames' => $group['frames']]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::vendor-frames'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['frames' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($group['frames'])]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal449787012edfba29f0e80f325065fad5)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal449787012edfba29f0e80f325065fad5; ?>
|
||||||
|
<?php unset($__attributesOriginal449787012edfba29f0e80f325065fad5); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal449787012edfba29f0e80f325065fad5)): ?>
|
||||||
|
<?php $component = $__componentOriginal449787012edfba29f0e80f325065fad5; ?>
|
||||||
|
<?php unset($__componentOriginal449787012edfba29f0e80f325065fad5); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php else: ?>
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__currentLoopData = $group['frames']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $frame): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalc7c58c6d16fe849872fb25ad6e9b8407 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalc7c58c6d16fe849872fb25ad6e9b8407 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.frame','data' => ['frame' => $frame]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::frame'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame)]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalc7c58c6d16fe849872fb25ad6e9b8407)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalc7c58c6d16fe849872fb25ad6e9b8407; ?>
|
||||||
|
<?php unset($__attributesOriginalc7c58c6d16fe849872fb25ad6e9b8407); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalc7c58c6d16fe849872fb25ad6e9b8407)): ?>
|
||||||
|
<?php $component = $__componentOriginalc7c58c6d16fe849872fb25ad6e9b8407; ?>
|
||||||
|
<?php unset($__componentOriginalc7c58c6d16fe849872fb25ad6e9b8407); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/trace.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['frame', 'direction' => 'ltr']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['frame', 'direction' => 'ltr']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
$file = $frame->file();
|
||||||
|
$line = $frame->line();
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div
|
||||||
|
<?php echo e($attributes->merge(['class' => 'truncate font-mono text-xs text-neutral-500 dark:text-neutral-400'])); ?>
|
||||||
|
|
||||||
|
dir="<?php echo e($direction); ?>"
|
||||||
|
>
|
||||||
|
<span data-tippy-content="<?php echo e($file); ?>:<?php echo e($line); ?>">
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if(config('app.editor')): ?>
|
||||||
|
<a href="<?php echo e($frame->editorHref()); ?>" @click.stop>
|
||||||
|
<span class="hover:underline decoration-neutral-400"><?php echo e($file); ?></span><span class="text-neutral-500">:<?php echo e($line); ?></span>
|
||||||
|
</a>
|
||||||
|
<?php else: ?>
|
||||||
|
<?php echo e($file); ?><span class="text-neutral-500">:<?php echo e($line); ?></span>
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/file-with-line.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['routeParameters']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['routeParameters']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div class="flex flex-col gap-3">
|
||||||
|
<h2 class="text-lg font-semibold">Routing parameters</h2>
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($routeParameters): ?>
|
||||||
|
<div class="bg-white dark:bg-white/[2%] border border-neutral-200 dark:border-neutral-800 rounded-md overflow-x-auto p-5 text-sm font-mono shadow-xs">
|
||||||
|
<?php if (isset($component)) { $__componentOriginal12cb286571f553eebcbe98210b217f94 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal12cb286571f553eebcbe98210b217f94 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.syntax-highlight','data' => ['code' => $routeParameters,'language' => 'json']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::syntax-highlight'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($routeParameters),'language' => 'json']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal12cb286571f553eebcbe98210b217f94)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal12cb286571f553eebcbe98210b217f94; ?>
|
||||||
|
<?php unset($__attributesOriginal12cb286571f553eebcbe98210b217f94); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal12cb286571f553eebcbe98210b217f94)): ?>
|
||||||
|
<?php $component = $__componentOriginal12cb286571f553eebcbe98210b217f94; ?>
|
||||||
|
<?php unset($__componentOriginal12cb286571f553eebcbe98210b217f94); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php else: ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal612ffe32146e3bd2ac6ba6076cca9520 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.empty-state','data' => ['message' => 'No routing parameters']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::empty-state'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['message' => 'No routing parameters']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520; ?>
|
||||||
|
<?php unset($__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal612ffe32146e3bd2ac6ba6076cca9520)): ?>
|
||||||
|
<?php $component = $__componentOriginal612ffe32146e3bd2ac6ba6076cca9520; ?>
|
||||||
|
<?php unset($__componentOriginal612ffe32146e3bd2ac6ba6076cca9520); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/routing-parameter.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['frame']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['frame']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div class="grid gap-3 p-4 bg-neutral-50 dark:bg-transparent overflow-x-auto rounded-lg">
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($frame->previous()): ?>
|
||||||
|
<div class="flex">
|
||||||
|
<?php if (isset($component)) { $__componentOriginalc33171fb5f34409a0ad661ae1625dcb2 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalc33171fb5f34409a0ad661ae1625dcb2 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.formatted-source','data' => ['frame' => $frame,'className' => 'text-xs']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::formatted-source'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame),'className' => 'text-xs']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalc33171fb5f34409a0ad661ae1625dcb2)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalc33171fb5f34409a0ad661ae1625dcb2; ?>
|
||||||
|
<?php unset($__attributesOriginalc33171fb5f34409a0ad661ae1625dcb2); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalc33171fb5f34409a0ad661ae1625dcb2)): ?>
|
||||||
|
<?php $component = $__componentOriginalc33171fb5f34409a0ad661ae1625dcb2; ?>
|
||||||
|
<?php unset($__componentOriginalc33171fb5f34409a0ad661ae1625dcb2); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php else: ?>
|
||||||
|
<span class="font-mono text-xs leading-3 text-neutral-500">Entrypoint</span>
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
|
||||||
|
<?php if (isset($component)) { $__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.file-with-line','data' => ['frame' => $frame,'class' => 'text-xs']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::file-with-line'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame),'class' => 'text-xs']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d; ?>
|
||||||
|
<?php unset($__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d)): ?>
|
||||||
|
<?php $component = $__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d; ?>
|
||||||
|
<?php unset($__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/vendor-frame.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,374 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['queries']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['queries']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div
|
||||||
|
<?php echo e($attributes->merge(['class' => "flex flex-col gap-2.5 bg-neutral-50 dark:bg-white/1 border border-neutral-200 dark:border-neutral-800 rounded-xl p-2.5 shadow-xs"])); ?>
|
||||||
|
|
||||||
|
x-data="{
|
||||||
|
totalQueries: <?php echo e(min(count($queries), 100)); ?>,
|
||||||
|
currentPage: 1,
|
||||||
|
perPage: 10,
|
||||||
|
get totalPages() {
|
||||||
|
return Math.ceil(this.totalQueries / this.perPage);
|
||||||
|
},
|
||||||
|
get hasPrevious() {
|
||||||
|
return this.currentPage > 1;
|
||||||
|
},
|
||||||
|
get hasNext() {
|
||||||
|
return this.currentPage < this.totalPages;
|
||||||
|
},
|
||||||
|
goToPage(page) {
|
||||||
|
if (page >= 1 && page <= this.totalPages) {
|
||||||
|
this.currentPage = page;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
first() {
|
||||||
|
this.currentPage = 1;
|
||||||
|
},
|
||||||
|
last() {
|
||||||
|
this.currentPage = this.totalPages;
|
||||||
|
},
|
||||||
|
previous() {
|
||||||
|
if (this.hasPrevious) {
|
||||||
|
this.currentPage--;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
next() {
|
||||||
|
if (this.hasNext) {
|
||||||
|
this.currentPage++;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
get visiblePages() {
|
||||||
|
const total = this.totalPages;
|
||||||
|
const current = this.currentPage;
|
||||||
|
const pages = [];
|
||||||
|
|
||||||
|
if (total <= 7) {
|
||||||
|
for (let i = 1; i <= total; i++) {
|
||||||
|
pages.push({ type: 'page', value: i });
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (current <= 4) {
|
||||||
|
for (let i = 1; i <= 5; i++) {
|
||||||
|
pages.push({ type: 'page', value: i });
|
||||||
|
}
|
||||||
|
if (total > 6) {
|
||||||
|
pages.push({ type: 'ellipsis', value: '...', id: 'end' });
|
||||||
|
pages.push({ type: 'page', value: total });
|
||||||
|
}
|
||||||
|
} else if (current > total - 4) {
|
||||||
|
pages.push({ type: 'page', value: 1 });
|
||||||
|
if (total > 6) {
|
||||||
|
pages.push({ type: 'ellipsis', value: '...', id: 'start' });
|
||||||
|
}
|
||||||
|
for (let i = Math.max(total - 4, 2); i <= total; i++) {
|
||||||
|
pages.push({ type: 'page', value: i });
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
pages.push({ type: 'page', value: 1 });
|
||||||
|
pages.push({ type: 'ellipsis', value: '...', id: 'start' });
|
||||||
|
for (let i = current - 1; i <= current + 1; i++) {
|
||||||
|
pages.push({ type: 'page', value: i });
|
||||||
|
}
|
||||||
|
pages.push({ type: 'ellipsis', value: '...', id: 'end' });
|
||||||
|
pages.push({ type: 'page', value: total });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return pages;
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<div class="flex items-center justify-between p-2">
|
||||||
|
<div class="flex items-center gap-2.5">
|
||||||
|
<div class="bg-white dark:bg-neutral-800 border border-neutral-200 dark:border-white/5 rounded-md w-6 h-6 flex items-center justify-center p-1">
|
||||||
|
<?php if (isset($component)) { $__componentOriginal9e277ab5ada333d718192209049fcff4 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal9e277ab5ada333d718192209049fcff4 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.database','data' => ['class' => 'w-2.5 h-2.5 text-blue-500 dark:text-emerald-500']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.database'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-2.5 h-2.5 text-blue-500 dark:text-emerald-500']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal9e277ab5ada333d718192209049fcff4)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal9e277ab5ada333d718192209049fcff4; ?>
|
||||||
|
<?php unset($__attributesOriginal9e277ab5ada333d718192209049fcff4); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal9e277ab5ada333d718192209049fcff4)): ?>
|
||||||
|
<?php $component = $__componentOriginal9e277ab5ada333d718192209049fcff4; ?>
|
||||||
|
<?php unset($__componentOriginal9e277ab5ada333d718192209049fcff4); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<h3 class="text-base font-semibold">Queries</h3>
|
||||||
|
</div>
|
||||||
|
<div x-show="totalQueries > 0" class="text-sm text-neutral-500 dark:text-neutral-400 flex items-center gap-2">
|
||||||
|
<span x-text="`${((currentPage - 1) * perPage) + 1}-${Math.min(currentPage * perPage, totalQueries)} of ${totalQueries}`"></span>
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if(count($queries) > 100): ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalc6e888149e09c77971305ebbddaee753 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalc6e888149e09c77971305ebbddaee753 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.info','data' => ['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','dataTippyContent' => 'Only the first 100 queries are shown']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.info'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','data-tippy-content' => 'Only the first 100 queries are shown']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalc6e888149e09c77971305ebbddaee753)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalc6e888149e09c77971305ebbddaee753; ?>
|
||||||
|
<?php unset($__attributesOriginalc6e888149e09c77971305ebbddaee753); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalc6e888149e09c77971305ebbddaee753)): ?>
|
||||||
|
<?php $component = $__componentOriginalc6e888149e09c77971305ebbddaee753; ?>
|
||||||
|
<?php unset($__componentOriginalc6e888149e09c77971305ebbddaee753); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex flex-col gap-1">
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__empty_1 = true; $__currentLoopData = array_slice($queries, 0, 100); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => ['connectionName' => $connectionName, 'sql' => $sql, 'time' => $time]): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
|
||||||
|
<div
|
||||||
|
class="border border-neutral-200 dark:border-none bg-white dark:bg-white/[3%] rounded-md h-10 flex items-center justify-between gap-4 px-4 text-xs font-mono shadow-xs"
|
||||||
|
x-show="Math.floor(<?php echo e($index); ?> / perPage) === (currentPage - 1)"
|
||||||
|
>
|
||||||
|
<div class="flex items-center gap-2 truncate">
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<?php if (isset($component)) { $__componentOriginal9e277ab5ada333d718192209049fcff4 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal9e277ab5ada333d718192209049fcff4 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.database','data' => ['class' => 'w-3 h-3 text-neutral-500 dark:text-neutral-400']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.database'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3 text-neutral-500 dark:text-neutral-400']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal9e277ab5ada333d718192209049fcff4)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal9e277ab5ada333d718192209049fcff4; ?>
|
||||||
|
<?php unset($__attributesOriginal9e277ab5ada333d718192209049fcff4); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal9e277ab5ada333d718192209049fcff4)): ?>
|
||||||
|
<?php $component = $__componentOriginal9e277ab5ada333d718192209049fcff4; ?>
|
||||||
|
<?php unset($__componentOriginal9e277ab5ada333d718192209049fcff4); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<span class="text-neutral-500 dark:text-neutral-400"><?php echo e($connectionName); ?></span>
|
||||||
|
</div>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal12cb286571f553eebcbe98210b217f94 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal12cb286571f553eebcbe98210b217f94 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.syntax-highlight','data' => ['code' => $sql,'language' => 'sql','truncate' => true,'class' => 'min-w-0','dataTippyContent' => ''.e(nl2br($sql)).'']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::syntax-highlight'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($sql),'language' => 'sql','truncate' => true,'class' => 'min-w-0','data-tippy-content' => ''.e(nl2br($sql)).'']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal12cb286571f553eebcbe98210b217f94)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal12cb286571f553eebcbe98210b217f94; ?>
|
||||||
|
<?php unset($__attributesOriginal12cb286571f553eebcbe98210b217f94); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal12cb286571f553eebcbe98210b217f94)): ?>
|
||||||
|
<?php $component = $__componentOriginal12cb286571f553eebcbe98210b217f94; ?>
|
||||||
|
<?php unset($__componentOriginal12cb286571f553eebcbe98210b217f94); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<div class="text-neutral-500 dark:text-neutral-200 text-right flex-shrink-0"><?php echo e($time); ?>ms</div>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal612ffe32146e3bd2ac6ba6076cca9520 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.empty-state','data' => ['message' => 'No queries executed']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::empty-state'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['message' => 'No queries executed']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520; ?>
|
||||||
|
<?php unset($__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal612ffe32146e3bd2ac6ba6076cca9520)): ?>
|
||||||
|
<?php $component = $__componentOriginal612ffe32146e3bd2ac6ba6076cca9520; ?>
|
||||||
|
<?php unset($__componentOriginal612ffe32146e3bd2ac6ba6076cca9520); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Pagination Controls -->
|
||||||
|
<div x-cloak x-show="totalPages > 1" class="flex items-center justify-center gap-1 py-4 font-mono">
|
||||||
|
<!-- First Button -->
|
||||||
|
<button
|
||||||
|
@click="first()"
|
||||||
|
class="cursor-pointer flex items-center justify-center w-8 h-8 rounded-md transition-colors"
|
||||||
|
:disabled="!hasPrevious"
|
||||||
|
:class="hasPrevious ? 'text-neutral-500 dark:text-neutral-300 hover:bg-neutral-200 hover:dark:text-white hover:dark:bg-white/5' : 'text-neutral-600 cursor-not-allowed!'"
|
||||||
|
>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal935198b948cf7048e898f42ce9f720b5 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal935198b948cf7048e898f42ce9f720b5 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.chevrons-left','data' => ['class' => 'w-3 h-3']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.chevrons-left'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal935198b948cf7048e898f42ce9f720b5)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal935198b948cf7048e898f42ce9f720b5; ?>
|
||||||
|
<?php unset($__attributesOriginal935198b948cf7048e898f42ce9f720b5); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal935198b948cf7048e898f42ce9f720b5)): ?>
|
||||||
|
<?php $component = $__componentOriginal935198b948cf7048e898f42ce9f720b5; ?>
|
||||||
|
<?php unset($__componentOriginal935198b948cf7048e898f42ce9f720b5); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<!-- Previous Button -->
|
||||||
|
<button
|
||||||
|
@click="previous()"
|
||||||
|
class="cursor-pointer flex items-center justify-center w-8 h-8 rounded-md transition-colors"
|
||||||
|
:class="hasPrevious ? 'text-neutral-500 dark:text-neutral-300 hover:bg-neutral-200 hover:dark:text-white hover:dark:bg-white/5' : 'text-neutral-600 cursor-not-allowed!'"
|
||||||
|
:disabled="!hasPrevious"
|
||||||
|
>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalb1a2603ab360710208f4e8402894d933 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalb1a2603ab360710208f4e8402894d933 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.chevron-left','data' => ['class' => 'w-3 h-3']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.chevron-left'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalb1a2603ab360710208f4e8402894d933)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalb1a2603ab360710208f4e8402894d933; ?>
|
||||||
|
<?php unset($__attributesOriginalb1a2603ab360710208f4e8402894d933); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalb1a2603ab360710208f4e8402894d933)): ?>
|
||||||
|
<?php $component = $__componentOriginalb1a2603ab360710208f4e8402894d933; ?>
|
||||||
|
<?php unset($__componentOriginalb1a2603ab360710208f4e8402894d933); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<!-- Page Numbers -->
|
||||||
|
<template x-for="(page, index) in visiblePages" :key="`page-${page.type}-${page.value}-${page.id || index}`">
|
||||||
|
<div>
|
||||||
|
<template x-if="page.type === 'ellipsis'">
|
||||||
|
<span class="flex items-center justify-center w-8 h-8 text-neutral-500">...</span>
|
||||||
|
</template>
|
||||||
|
<template x-if="page.type === 'page'">
|
||||||
|
<button
|
||||||
|
@click="goToPage(page.value)"
|
||||||
|
class="cursor-pointer flex items-center justify-center w-8 h-8 rounded-md text-sm font-medium transition-colors"
|
||||||
|
:class="currentPage === page.value ? 'bg-blue-600 text-white' : 'text-neutral-500 dark:text-neutral-300 hover:bg-neutral-200 hover:dark:text-white hover:dark:bg-white/5'"
|
||||||
|
x-text="page.value"
|
||||||
|
></button>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<!-- Next Button -->
|
||||||
|
<button
|
||||||
|
@click="next()"
|
||||||
|
class="cursor-pointer flex items-center justify-center w-8 h-8 rounded-md transition-colors"
|
||||||
|
:class="hasNext ? 'text-neutral-500 dark:text-neutral-300 hover:bg-neutral-200 hover:dark:text-white hover:dark:bg-white/5' : 'text-neutral-600 cursor-not-allowed!'"
|
||||||
|
:disabled="!hasNext"
|
||||||
|
>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalb7b593bedd3add356eaada0571956b3f = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalb7b593bedd3add356eaada0571956b3f = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.chevron-right','data' => ['class' => 'w-3 h-3']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.chevron-right'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalb7b593bedd3add356eaada0571956b3f)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalb7b593bedd3add356eaada0571956b3f; ?>
|
||||||
|
<?php unset($__attributesOriginalb7b593bedd3add356eaada0571956b3f); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalb7b593bedd3add356eaada0571956b3f)): ?>
|
||||||
|
<?php $component = $__componentOriginalb7b593bedd3add356eaada0571956b3f; ?>
|
||||||
|
<?php unset($__componentOriginalb7b593bedd3add356eaada0571956b3f); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<!-- Last Button -->
|
||||||
|
<button
|
||||||
|
@click="last()"
|
||||||
|
class="cursor-pointer flex items-center justify-center w-8 h-8 rounded-md transition-colors"
|
||||||
|
:class="hasNext ? 'text-neutral-500 dark:text-neutral-300 hover:bg-neutral-200 hover:dark:text-white hover:dark:bg-white/5' : 'text-neutral-600 cursor-not-allowed!'"
|
||||||
|
:disabled="!hasNext"
|
||||||
|
>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalbb91e7976582fbddcedcde197cd5dca1 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalbb91e7976582fbddcedcde197cd5dca1 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.chevrons-right','data' => ['class' => 'w-3 h-3']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.chevrons-right'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalbb91e7976582fbddcedcde197cd5dca1)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalbb91e7976582fbddcedcde197cd5dca1; ?>
|
||||||
|
<?php unset($__attributesOriginalbb91e7976582fbddcedcde197cd5dca1); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalbb91e7976582fbddcedcde197cd5dca1)): ?>
|
||||||
|
<?php $component = $__componentOriginalbb91e7976582fbddcedcde197cd5dca1; ?>
|
||||||
|
<?php unset($__componentOriginalbb91e7976582fbddcedcde197cd5dca1); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/query.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,180 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['frame']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['frame']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div
|
||||||
|
x-data="{
|
||||||
|
expanded: <?php echo e($frame->isMain() ? 'true' : 'false'); ?>,
|
||||||
|
hasCode: <?php echo e($frame->snippet() ? 'true' : 'false'); ?>
|
||||||
|
|
||||||
|
}"
|
||||||
|
class="group rounded-lg border border-neutral-200 dark:border-white/10 overflow-hidden shadow-xs"
|
||||||
|
:class="{ 'dark:border-white/5': expanded }"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="flex h-11 items-center gap-3 bg-white pr-2.5 pl-4 overflow-x-auto dark:bg-white/3"
|
||||||
|
:class="{
|
||||||
|
'cursor-pointer hover:bg-white/50 dark:hover:bg-white/5 hover:[&_svg]:stroke-emerald-500': hasCode,
|
||||||
|
'dark:bg-white/5 rounded-t-lg': expanded,
|
||||||
|
'dark:bg-white/3 rounded-lg': !expanded
|
||||||
|
}"
|
||||||
|
@click="hasCode && (expanded = !expanded)"
|
||||||
|
>
|
||||||
|
|
||||||
|
<div class="flex size-3 items-center justify-center flex-shrink-0">
|
||||||
|
<div
|
||||||
|
class="size-2 rounded-full"
|
||||||
|
:class="{
|
||||||
|
'bg-rose-500 dark:bg-neutral-400': expanded,
|
||||||
|
'bg-rose-200 dark:bg-neutral-700': !expanded
|
||||||
|
}"
|
||||||
|
></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex flex-1 items-center justify-between gap-6 min-w-0">
|
||||||
|
<?php if (isset($component)) { $__componentOriginalc33171fb5f34409a0ad661ae1625dcb2 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalc33171fb5f34409a0ad661ae1625dcb2 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.formatted-source','data' => ['frame' => $frame]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::formatted-source'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame)]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalc33171fb5f34409a0ad661ae1625dcb2)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalc33171fb5f34409a0ad661ae1625dcb2; ?>
|
||||||
|
<?php unset($__attributesOriginalc33171fb5f34409a0ad661ae1625dcb2); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalc33171fb5f34409a0ad661ae1625dcb2)): ?>
|
||||||
|
<?php $component = $__componentOriginalc33171fb5f34409a0ad661ae1625dcb2; ?>
|
||||||
|
<?php unset($__componentOriginalc33171fb5f34409a0ad661ae1625dcb2); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.file-with-line','data' => ['frame' => $frame,'direction' => 'rtl']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::file-with-line'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame),'direction' => 'rtl']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d; ?>
|
||||||
|
<?php unset($__attributesOriginalfe2bc8d0a6d110d41fdc8740012cee8d); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d)): ?>
|
||||||
|
<?php $component = $__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d; ?>
|
||||||
|
<?php unset($__componentOriginalfe2bc8d0a6d110d41fdc8740012cee8d); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex-shrink-0">
|
||||||
|
<button
|
||||||
|
x-cloak
|
||||||
|
type="button"
|
||||||
|
class="flex h-6 w-6 cursor-pointer items-center justify-center rounded-md dark:border dark:border-white/8 group-hover:text-blue-500 group-hover:dark:text-emerald-500"
|
||||||
|
:class="{
|
||||||
|
'text-blue-500 dark:text-emerald-500 dark:bg-white/5': expanded,
|
||||||
|
'text-neutral-500 dark:text-neutral-500 dark:bg-white/3': !expanded,
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal4400c4a71d3ea90a0e0b846e7d689a28 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal4400c4a71d3ea90a0e0b846e7d689a28 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.chevrons-down-up','data' => ['xShow' => 'expanded']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.chevrons-down-up'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['x-show' => 'expanded']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal4400c4a71d3ea90a0e0b846e7d689a28)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal4400c4a71d3ea90a0e0b846e7d689a28; ?>
|
||||||
|
<?php unset($__attributesOriginal4400c4a71d3ea90a0e0b846e7d689a28); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal4400c4a71d3ea90a0e0b846e7d689a28)): ?>
|
||||||
|
<?php $component = $__componentOriginal4400c4a71d3ea90a0e0b846e7d689a28; ?>
|
||||||
|
<?php unset($__componentOriginal4400c4a71d3ea90a0e0b846e7d689a28); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal7348bb70f498d75e0a91acc6a707f136 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal7348bb70f498d75e0a91acc6a707f136 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.chevrons-up-down','data' => ['xShow' => '!expanded']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.chevrons-up-down'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['x-show' => '!expanded']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal7348bb70f498d75e0a91acc6a707f136)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal7348bb70f498d75e0a91acc6a707f136; ?>
|
||||||
|
<?php unset($__attributesOriginal7348bb70f498d75e0a91acc6a707f136); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal7348bb70f498d75e0a91acc6a707f136)): ?>
|
||||||
|
<?php $component = $__componentOriginal7348bb70f498d75e0a91acc6a707f136; ?>
|
||||||
|
<?php unset($__componentOriginal7348bb70f498d75e0a91acc6a707f136); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($snippet = $frame->snippet()): ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginala7df34c267a7ce6efa01f63b793ef234 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginala7df34c267a7ce6efa01f63b793ef234 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.frame-code','data' => ['code' => $snippet,'highlightedLine' => $frame->line(),'xShow' => 'expanded']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::frame-code'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($snippet),'highlightedLine' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame->line()),'x-show' => 'expanded']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginala7df34c267a7ce6efa01f63b793ef234)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginala7df34c267a7ce6efa01f63b793ef234; ?>
|
||||||
|
<?php unset($__attributesOriginala7df34c267a7ce6efa01f63b793ef234); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginala7df34c267a7ce6efa01f63b793ef234)): ?>
|
||||||
|
<?php $component = $__componentOriginala7df34c267a7ce6efa01f63b793ef234; ?>
|
||||||
|
<?php unset($__componentOriginala7df34c267a7ce6efa01f63b793ef234); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/frame.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['headers']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['headers']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div class="flex flex-col gap-3">
|
||||||
|
<h2 class="text-lg font-semibold text-neutral-900 dark:text-white">Headers</h2>
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__currentLoopData = $headers; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||||
|
<div class="flex max-w-full items-baseline gap-2 h-10 text-sm font-mono">
|
||||||
|
<div class="uppercase text-neutral-500 dark:text-neutral-400 shrink-0"><?php echo e($key); ?></div>
|
||||||
|
<div class="min-w-6 grow h-3 border-b-2 border-dotted border-neutral-300 dark:border-white/20"></div>
|
||||||
|
<div class="truncate text-neutral-900 dark:text-white">
|
||||||
|
<span data-tippy-content="<?php echo e($value); ?>">
|
||||||
|
<?php echo e($value); ?>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/request-header.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,170 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['frames']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['frames']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<?php use \Illuminate\Support\Str; ?>
|
||||||
|
|
||||||
|
<div
|
||||||
|
x-data="{ expanded: false }"
|
||||||
|
class="group rounded-lg border border-neutral-200 dark:border-white/5"
|
||||||
|
:class="{
|
||||||
|
'bg-white dark:bg-white/5 shadow-xs': expanded,
|
||||||
|
'border-dashed border-neutral-300 bg-neutral-50 opacity-90 dark:border-white/10 dark:bg-white/1': !expanded,
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="flex h-11 cursor-pointer items-center gap-3 rounded-lg pr-2.5 pl-4 hover:bg-white/50 dark:hover:bg-white/2"
|
||||||
|
@click="expanded = !expanded"
|
||||||
|
>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal6936650fa23142238a13a0689c4bfe24 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal6936650fa23142238a13a0689c4bfe24 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.folder','data' => ['class' => 'w-3 h-3 text-neutral-400','xShow' => '!expanded','xCloak' => true]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.folder'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3 text-neutral-400','x-show' => '!expanded','x-cloak' => true]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal6936650fa23142238a13a0689c4bfe24)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal6936650fa23142238a13a0689c4bfe24; ?>
|
||||||
|
<?php unset($__attributesOriginal6936650fa23142238a13a0689c4bfe24); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal6936650fa23142238a13a0689c4bfe24)): ?>
|
||||||
|
<?php $component = $__componentOriginal6936650fa23142238a13a0689c4bfe24; ?>
|
||||||
|
<?php unset($__componentOriginal6936650fa23142238a13a0689c4bfe24); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal94e6c9aa0eb2b7a85f88307a3371880e = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal94e6c9aa0eb2b7a85f88307a3371880e = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.folder-open','data' => ['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','xShow' => 'expanded']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.folder-open'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','x-show' => 'expanded']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal94e6c9aa0eb2b7a85f88307a3371880e)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal94e6c9aa0eb2b7a85f88307a3371880e; ?>
|
||||||
|
<?php unset($__attributesOriginal94e6c9aa0eb2b7a85f88307a3371880e); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal94e6c9aa0eb2b7a85f88307a3371880e)): ?>
|
||||||
|
<?php $component = $__componentOriginal94e6c9aa0eb2b7a85f88307a3371880e; ?>
|
||||||
|
<?php unset($__componentOriginal94e6c9aa0eb2b7a85f88307a3371880e); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<div class="flex-1 font-mono text-xs leading-3 text-neutral-900 dark:text-neutral-400">
|
||||||
|
<?php echo e(count($frames)); ?> vendor <?php echo e(Str::plural('frame', count($frames))); ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button
|
||||||
|
x-cloak
|
||||||
|
type="button"
|
||||||
|
class="flex h-6 w-6 cursor-pointer items-center justify-center rounded-md dark:border dark:border-white/8 group-hover:text-blue-500 group-hover:dark:text-emerald-500"
|
||||||
|
:class="{
|
||||||
|
'text-blue-500 dark:text-emerald-500 dark:bg-white/5': expanded,
|
||||||
|
'text-neutral-500 dark:text-neutral-500 dark:bg-white/3': !expanded,
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal4400c4a71d3ea90a0e0b846e7d689a28 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal4400c4a71d3ea90a0e0b846e7d689a28 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.chevrons-down-up','data' => ['xShow' => 'expanded']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.chevrons-down-up'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['x-show' => 'expanded']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal4400c4a71d3ea90a0e0b846e7d689a28)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal4400c4a71d3ea90a0e0b846e7d689a28; ?>
|
||||||
|
<?php unset($__attributesOriginal4400c4a71d3ea90a0e0b846e7d689a28); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal4400c4a71d3ea90a0e0b846e7d689a28)): ?>
|
||||||
|
<?php $component = $__componentOriginal4400c4a71d3ea90a0e0b846e7d689a28; ?>
|
||||||
|
<?php unset($__componentOriginal4400c4a71d3ea90a0e0b846e7d689a28); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal7348bb70f498d75e0a91acc6a707f136 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal7348bb70f498d75e0a91acc6a707f136 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.chevrons-up-down','data' => ['xShow' => '!expanded']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.chevrons-up-down'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['x-show' => '!expanded']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal7348bb70f498d75e0a91acc6a707f136)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal7348bb70f498d75e0a91acc6a707f136; ?>
|
||||||
|
<?php unset($__attributesOriginal7348bb70f498d75e0a91acc6a707f136); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal7348bb70f498d75e0a91acc6a707f136)): ?>
|
||||||
|
<?php $component = $__componentOriginal7348bb70f498d75e0a91acc6a707f136; ?>
|
||||||
|
<?php unset($__componentOriginal7348bb70f498d75e0a91acc6a707f136); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div x-cloak class="flex flex-col rounded-b-lg divide-y divide-neutral-200 border-t border-neutral-200 dark:divide-white/5 dark:border-white/5" x-show="expanded">
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__currentLoopData = $frames; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $frame): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||||||
|
<div class="flex flex-col divide-y divide-neutral-200 dark:divide-white/5">
|
||||||
|
<?php if (isset($component)) { $__componentOriginal96f0b6f4219e16dc62468d91b0335b32 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal96f0b6f4219e16dc62468d91b0335b32 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.vendor-frame','data' => ['frame' => $frame]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::vendor-frame'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame)]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal96f0b6f4219e16dc62468d91b0335b32)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal96f0b6f4219e16dc62468d91b0335b32; ?>
|
||||||
|
<?php unset($__attributesOriginal96f0b6f4219e16dc62468d91b0335b32); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal96f0b6f4219e16dc62468d91b0335b32)): ?>
|
||||||
|
<?php $component = $__componentOriginal96f0b6f4219e16dc62468d91b0335b32; ?>
|
||||||
|
<?php unset($__componentOriginal96f0b6f4219e16dc62468d91b0335b32); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/vendor-frames.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" <?php echo e($attributes); ?>>
|
||||||
|
<path d="M4.75 1L0.75 5L4.75 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M9.25 1L5.25 5L9.25 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/chevrons-left.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 536 B |
@@ -0,0 +1,28 @@
|
|||||||
|
<?php use \Illuminate\Foundation\Exceptions\Renderer\Renderer; ?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||||
|
|
||||||
|
<title><?php echo e(config('app.name', 'Laravel')); ?></title>
|
||||||
|
|
||||||
|
<link
|
||||||
|
rel="icon" type="image/svg+xml"
|
||||||
|
href="data:image/svg+xml,%3Csvg viewBox='0 -.11376601 49.74245785 51.31690859' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m49.626 11.564a.809.809 0 0 1 .028.209v10.972a.8.8 0 0 1 -.402.694l-9.209 5.302v10.509c0 .286-.152.55-.4.694l-19.223 11.066c-.044.025-.092.041-.14.058-.018.006-.035.017-.054.022a.805.805 0 0 1 -.41 0c-.022-.006-.042-.018-.063-.026-.044-.016-.09-.03-.132-.054l-19.219-11.066a.801.801 0 0 1 -.402-.694v-32.916c0-.072.01-.142.028-.21.006-.023.02-.044.028-.067.015-.042.029-.085.051-.124.015-.026.037-.047.055-.071.023-.032.044-.065.071-.093.023-.023.053-.04.079-.06.029-.024.055-.05.088-.069h.001l9.61-5.533a.802.802 0 0 1 .8 0l9.61 5.533h.002c.032.02.059.045.088.068.026.02.055.038.078.06.028.029.048.062.072.094.017.024.04.045.054.071.023.04.036.082.052.124.008.023.022.044.028.068a.809.809 0 0 1 .028.209v20.559l8.008-4.611v-10.51c0-.07.01-.141.028-.208.007-.024.02-.045.028-.068.016-.042.03-.085.052-.124.015-.026.037-.047.054-.071.024-.032.044-.065.072-.093.023-.023.052-.04.078-.06.03-.024.056-.05.088-.069h.001l9.611-5.533a.801.801 0 0 1 .8 0l9.61 5.533c.034.02.06.045.09.068.025.02.054.038.077.06.028.029.048.062.072.094.018.024.04.045.054.071.023.039.036.082.052.124.009.023.022.044.028.068zm-1.574 10.718v-9.124l-3.363 1.936-4.646 2.675v9.124l8.01-4.611zm-9.61 16.505v-9.13l-4.57 2.61-13.05 7.448v9.216zm-36.84-31.068v31.068l17.618 10.143v-9.214l-9.204-5.209-.003-.002-.004-.002c-.031-.018-.057-.044-.086-.066-.025-.02-.054-.036-.076-.058l-.002-.003c-.026-.025-.044-.056-.066-.084-.02-.027-.044-.05-.06-.078l-.001-.003c-.018-.03-.029-.066-.042-.1-.013-.03-.03-.058-.038-.09v-.001c-.01-.038-.012-.078-.016-.117-.004-.03-.012-.06-.012-.09v-21.483l-4.645-2.676-3.363-1.934zm8.81-5.994-8.007 4.609 8.005 4.609 8.006-4.61-8.006-4.608zm4.164 28.764 4.645-2.674v-20.096l-3.363 1.936-4.646 2.675v20.096zm24.667-23.325-8.006 4.609 8.006 4.609 8.005-4.61zm-.801 10.605-4.646-2.675-3.363-1.936v9.124l4.645 2.674 3.364 1.937zm-18.422 20.561 11.743-6.704 5.87-3.35-8-4.606-9.211 5.303-8.395 4.833z' fill='%23ff2d20'/%3E%3C/svg%3E"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<?php echo Renderer::css(); ?>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body class="font-sans antialiased overflow-x-hidden bg-neutral-50 dark:bg-neutral-900 dark:text-white scheme-light-dark">
|
||||||
|
<div class="min-h-dvh">
|
||||||
|
<?php echo e($slot); ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php echo Renderer::js(); ?>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/layout.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['code', 'highlightedLine']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['code', 'highlightedLine']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="text-sm rounded-b-lg bg-neutral-50 border-t border-neutral-100 dark:bg-neutral-900 dark:border-white/10"
|
||||||
|
<?php echo e($attributes); ?>
|
||||||
|
|
||||||
|
>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal12cb286571f553eebcbe98210b217f94 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal12cb286571f553eebcbe98210b217f94 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.syntax-highlight','data' => ['code' => $code,'language' => 'php','editor' => true,'startingLine' => max(1, $highlightedLine - 5),'highlightedLine' => min(5, $highlightedLine - 1),'class' => 'overflow-x-auto']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::syntax-highlight'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($code),'language' => 'php','editor' => true,'starting-line' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(max(1, $highlightedLine - 5)),'highlighted-line' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(min(5, $highlightedLine - 1)),'class' => 'overflow-x-auto']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal12cb286571f553eebcbe98210b217f94)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal12cb286571f553eebcbe98210b217f94; ?>
|
||||||
|
<?php unset($__attributesOriginal12cb286571f553eebcbe98210b217f94); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal12cb286571f553eebcbe98210b217f94)): ?>
|
||||||
|
<?php $component = $__componentOriginal12cb286571f553eebcbe98210b217f94; ?>
|
||||||
|
<?php unset($__componentOriginal12cb286571f553eebcbe98210b217f94); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/frame-code.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,98 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames(([
|
||||||
|
'code',
|
||||||
|
'language',
|
||||||
|
'editor' => false,
|
||||||
|
'startingLine' => 1,
|
||||||
|
'highlightedLine' => null,
|
||||||
|
'truncate' => false,
|
||||||
|
]));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter(([
|
||||||
|
'code',
|
||||||
|
'language',
|
||||||
|
'editor' => false,
|
||||||
|
'startingLine' => 1,
|
||||||
|
'highlightedLine' => null,
|
||||||
|
'truncate' => false,
|
||||||
|
]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
$fallback = $truncate ? '<pre class="truncate"><code>' : '<pre><code>';
|
||||||
|
|
||||||
|
if ($editor) {
|
||||||
|
$lines = explode("\n", $code);
|
||||||
|
|
||||||
|
foreach ($lines as $index => $line) {
|
||||||
|
$lineNumber = $startingLine + $index;
|
||||||
|
$highlight = $highlightedLine === $index;
|
||||||
|
$lineClass = implode(' ', [
|
||||||
|
'block px-4 py-1 h-7 even:bg-white odd:bg-white/2 even:dark:bg-white/2 odd:dark:bg-white/4',
|
||||||
|
$highlight ? 'bg-rose-200! dark:bg-rose-900!' : '',
|
||||||
|
]);
|
||||||
|
$lineNumberClass = implode(' ', [
|
||||||
|
'mr-6 text-neutral-500! dark:text-neutral-600!',
|
||||||
|
$highlight ? 'dark:text-white!' : '',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$fallback .= '<span class="' . $lineClass . '">';
|
||||||
|
$fallback .= '<span class="' . $lineNumberClass . '">' . $lineNumber . '</span>';
|
||||||
|
$fallback .= htmlspecialchars($line);
|
||||||
|
$fallback .= '</span>';
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
$fallback .= htmlspecialchars($code);
|
||||||
|
}
|
||||||
|
|
||||||
|
$fallback .= '</code></pre>';
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div
|
||||||
|
x-data="{ highlightedCode: null }"
|
||||||
|
x-init="
|
||||||
|
highlightedCode = window.highlight(
|
||||||
|
<?php echo e(Illuminate\Support\Js::from($code)); ?>,
|
||||||
|
<?php echo e(Illuminate\Support\Js::from($language)); ?>,
|
||||||
|
<?php echo e(Illuminate\Support\Js::from($truncate)); ?>,
|
||||||
|
<?php echo e(Illuminate\Support\Js::from($editor)); ?>,
|
||||||
|
<?php echo e(Illuminate\Support\Js::from($startingLine)); ?>,
|
||||||
|
<?php echo e(Illuminate\Support\Js::from($highlightedLine)); ?>
|
||||||
|
|
||||||
|
);
|
||||||
|
"
|
||||||
|
<?php echo e($attributes); ?>
|
||||||
|
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
x-cloak
|
||||||
|
x-html="highlightedCode"
|
||||||
|
></div>
|
||||||
|
<div x-show="!highlightedCode"><?php echo $fallback; ?></div>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/syntax-highlight.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<section
|
||||||
|
<?php echo e($attributes->merge(['class' => "w-full max-w-7xl mx-auto p-4 sm:p-14 border-x border-dashed border-neutral-300 dark:border-white/[9%]"])); ?>
|
||||||
|
|
||||||
|
>
|
||||||
|
<?php echo e($slot); ?>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/section-container.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" <?php echo e($attributes); ?>>
|
||||||
|
<g clip-path="url(#clip0_14550_6155)">
|
||||||
|
<path d="M8.75 8.25012L6 11.0001L3.25 8.25012" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M8.75 3.75012L6 1.00012L3.25 3.75012" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_14550_6155">
|
||||||
|
<rect width="12" height="12" fill="white" style="fill:white;fill-opacity:1;"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/chevrons-up-down.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 774 B |
@@ -0,0 +1,79 @@
|
|||||||
|
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag;
|
||||||
|
|
||||||
|
$__newAttributes = [];
|
||||||
|
$__propNames = \Illuminate\View\ComponentAttributeBag::extractPropNames((['body']));
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (in_array($__key, $__propNames)) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
} else {
|
||||||
|
$__newAttributes[$__key] = $__value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
|
||||||
|
|
||||||
|
unset($__propNames);
|
||||||
|
unset($__newAttributes);
|
||||||
|
|
||||||
|
foreach (array_filter((['body']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
|
||||||
|
$$__key = $$__key ?? $__value;
|
||||||
|
}
|
||||||
|
|
||||||
|
$__defined_vars = get_defined_vars();
|
||||||
|
|
||||||
|
foreach ($attributes->all() as $__key => $__value) {
|
||||||
|
if (array_key_exists($__key, $__defined_vars)) unset($$__key);
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($__defined_vars, $__key, $__value); ?>
|
||||||
|
|
||||||
|
<div class="flex flex-col gap-3">
|
||||||
|
<h2 class="text-lg font-semibold">Body</h2>
|
||||||
|
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($body): ?>
|
||||||
|
<div class="bg-white dark:bg-white/[2%] border border-neutral-200 dark:border-neutral-800 rounded-md overflow-x-auto p-5 text-sm font-mono shadow-xs">
|
||||||
|
<?php if (isset($component)) { $__componentOriginal12cb286571f553eebcbe98210b217f94 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal12cb286571f553eebcbe98210b217f94 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.syntax-highlight','data' => ['code' => $body,'language' => 'json']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::syntax-highlight'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($body),'language' => 'json']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal12cb286571f553eebcbe98210b217f94)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal12cb286571f553eebcbe98210b217f94; ?>
|
||||||
|
<?php unset($__attributesOriginal12cb286571f553eebcbe98210b217f94); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal12cb286571f553eebcbe98210b217f94)): ?>
|
||||||
|
<?php $component = $__componentOriginal12cb286571f553eebcbe98210b217f94; ?>
|
||||||
|
<?php unset($__componentOriginal12cb286571f553eebcbe98210b217f94); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php else: ?>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal612ffe32146e3bd2ac6ba6076cca9520 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.empty-state','data' => ['message' => 'No request body']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::empty-state'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes(['message' => 'No request body']); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520; ?>
|
||||||
|
<?php unset($__attributesOriginal612ffe32146e3bd2ac6ba6076cca9520); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal612ffe32146e3bd2ac6ba6076cca9520)): ?>
|
||||||
|
<?php $component = $__componentOriginal612ffe32146e3bd2ac6ba6076cca9520; ?>
|
||||||
|
<?php unset($__componentOriginal612ffe32146e3bd2ac6ba6076cca9520); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/request-body.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" <?php echo e($attributes); ?>>
|
||||||
|
<path d="M5.99996 10.6876C7.10936 10.6876 8.00871 8.58896 8.00871 6.00012C8.00871 3.41129 7.10936 1.31262 5.99996 1.31262C4.89056 1.31262 3.99121 3.41129 3.99121 6.00012C3.99121 8.58896 4.89056 10.6876 5.99996 10.6876Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M1.3125 6.00012H10.6875" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M6 10.6876C8.58883 10.6876 10.6875 8.58896 10.6875 6.00012C10.6875 3.41129 8.58883 1.31262 6 1.31262C3.41117 1.31262 1.3125 3.41129 1.3125 6.00012C1.3125 8.58896 3.41117 10.6876 6 10.6876Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/globe.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 992 B |
@@ -0,0 +1,61 @@
|
|||||||
|
<div
|
||||||
|
class="relative text-neutral-400 dark:text-neutral-400"
|
||||||
|
x-data="{ spotlight: { x: 0, y: 0 } }"
|
||||||
|
@mousemove="const rect = $el.getBoundingClientRect(); spotlight = { x: $event.clientX - rect.left, y: $event.clientY - rect.top }">
|
||||||
|
<div
|
||||||
|
class="absolute w-full text-neutral-800 dark:text-neutral-100"
|
||||||
|
x-data="{ isDark: window.matchMedia('(prefers-color-scheme: dark)').matches || document.documentElement.classList.contains('dark') }"
|
||||||
|
:style="
|
||||||
|
'mask-image: radial-gradient(circle at ' +
|
||||||
|
spotlight.x +
|
||||||
|
'px ' +
|
||||||
|
spotlight.y +
|
||||||
|
'px, black 0%, transparent ' + (isDark ? '150px' : '120px') + '); -webkit-mask-image: radial-gradient(circle at ' +
|
||||||
|
spotlight.x +
|
||||||
|
'px ' +
|
||||||
|
spotlight.y +
|
||||||
|
'px, black 0%, transparent ' + (isDark ? '600px' : '400px') + ');'
|
||||||
|
">
|
||||||
|
<?php if (isset($component)) { $__componentOriginal2a45ee13943eadc15ee63d255f492356 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal2a45ee13943eadc15ee63d255f492356 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.laravel-ascii','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.laravel-ascii'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes([]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal2a45ee13943eadc15ee63d255f492356)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal2a45ee13943eadc15ee63d255f492356; ?>
|
||||||
|
<?php unset($__attributesOriginal2a45ee13943eadc15ee63d255f492356); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal2a45ee13943eadc15ee63d255f492356)): ?>
|
||||||
|
<?php $component = $__componentOriginal2a45ee13943eadc15ee63d255f492356; ?>
|
||||||
|
<?php unset($__componentOriginal2a45ee13943eadc15ee63d255f492356); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php if (isset($component)) { $__componentOriginal2a45ee13943eadc15ee63d255f492356 = $component; } ?>
|
||||||
|
<?php if (isset($attributes)) { $__attributesOriginal2a45ee13943eadc15ee63d255f492356 = $attributes; } ?>
|
||||||
|
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'laravel-exceptions-renderer::components.icons.laravel-ascii','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
|
||||||
|
<?php $component->withName('laravel-exceptions-renderer::icons.laravel-ascii'); ?>
|
||||||
|
<?php if ($component->shouldRender()): ?>
|
||||||
|
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
|
||||||
|
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
|
||||||
|
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php $component->withAttributes([]); ?>
|
||||||
|
<?php echo $__env->renderComponent(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__attributesOriginal2a45ee13943eadc15ee63d255f492356)): ?>
|
||||||
|
<?php $attributes = $__attributesOriginal2a45ee13943eadc15ee63d255f492356; ?>
|
||||||
|
<?php unset($__attributesOriginal2a45ee13943eadc15ee63d255f492356); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (isset($__componentOriginal2a45ee13943eadc15ee63d255f492356)): ?>
|
||||||
|
<?php $component = $__componentOriginal2a45ee13943eadc15ee63d255f492356; ?>
|
||||||
|
<?php unset($__componentOriginal2a45ee13943eadc15ee63d255f492356); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/laravel-ascii-spotlight.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
<div <?php echo e($attributes->merge(['class' => "h-0 w-full relative"])); ?>>
|
||||||
|
<div class="absolute top-[-1px] left-0 right-0 bottom-0 border-t border-dashed border-neutral-300 dark:border-white/[9%]"></div>
|
||||||
|
</div>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/separator.blade.php ENDPATH**/ ?>
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="12" viewBox="0 0 8 12" fill="none" <?php echo e($attributes); ?>>
|
||||||
|
<g clip-path="url(#clip0_14550_6168)">
|
||||||
|
<path d="M6.75 11.0001L4 8.25012L1.25 11.0001" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M6.75 1.50012L4 4.25012L1.25 1.50012" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_14550_6168">
|
||||||
|
<rect width="8" height="11" fill="white" style="fill:white;fill-opacity:1;" transform="translate(0 0.500122)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
<?php /**PATH /var/www/additional_design/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/components/icons/chevrons-down-up.blade.php ENDPATH**/ ?>
|
||||||
|
After Width: | Height: | Size: 805 B |