$items = [
(new InvoiceItem())
->title('Service 1')
->description('Your product or service description') // here is the problem
->pricePerUnit(47.79)
->quantity(2)
->discount(10),
];
$invoice = Invoice::make('receipt')
->series('BIG')
->status(__('invoices::invoice.paid')) // here is the problem
->sequence(667)
Symfony\Component\Debug\Exception\FatalThrowableError: Call to undefined method LaravelDaily\Invoices\Classes\InvoiceItem::description()
Symfony\Component\Debug\Exception\FatalThrowableError: Call to undefined method LaravelDaily\Invoices\Invoice::status()
package version : 1.3 laravel version : 5.8