You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After publishing assets you can modify or make your own template for invoices.
223
+
224
+
Templates are stored in the `resources/views/vendor/invoices/templates` directory. There you will find `default.blade.php` template which is used by default.
225
+
226
+
You can specify which template to use by calling `template` method on Invoice object.
227
+
228
+
For example if you have `resources/views/vendor/invoices/templates/my_company.blade.php` it should look like this:
229
+
230
+
```php
231
+
Invoice::make('receipt')->template('my_company');
232
+
```
233
+
234
+
Too see how things work in a template you can view `default.blade.php` as an example.
0 commit comments