Skip to content

Commit d2cc0f5

Browse files
committed
added invoice status to the default template
1 parent 1a0a885 commit d2cc0f5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

resources/views/templates/default.blade.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,19 @@
123123
.border-0 {
124124
border: none !important;
125125
}
126+
126127
.description {
127128
margin-top: 0.25rem;
128129
margin-bottom: 0;
129130
color: #999;
130131
}
132+
133+
.status {
134+
color: #999;
135+
font-size: 2rem;
136+
font-weight: bold;
137+
text-transform: uppercase;
138+
}
131139
</style>
132140
</head>
133141

@@ -145,6 +153,7 @@
145153
</h4>
146154
</td>
147155
<td class="border-0 pl-0">
156+
<p class="status">{{ $invoice->status }}</p>
148157
<p>{{ __('invoices::invoice.serial') }} <strong>{{ $invoice->getSerialNumber() }}</strong></p>
149158
<p>{{ __('invoices::invoice.date') }}: <strong>{{ $invoice->getDate() }}</strong></p>
150159
</td>

0 commit comments

Comments
 (0)