We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e33f83 commit 1a0a885Copy full SHA for 1a0a885
config/invoices.php
@@ -65,6 +65,8 @@
65
66
'disk' => 'local',
67
68
+ 'status' => 'Due',
69
+
70
'seller' => [
71
/**
72
* Class used in templates via $invoice->seller
src/Invoice.php
@@ -160,6 +160,8 @@ public function __construct($name = 'Invoice')
160
$this->items = Collection::make([]);
161
$this->template = 'default';
162
163
+ $this->status = config('invoices.status');
164
165
// Date
166
$this->date = Carbon::now();
167
$this->date_format = config('invoices.date.format');
0 commit comments