Laravel 10 and Vuejs 3 – Simple Invoice Application
In this tutorial, we will create a simple invoice application using Laravel 10 and Vuejs 3. We will start by creating a form to add invoice data and then create a template to display the invoice.
Create Invoice
Invoice Template
Invoice Details
Client Name: {{ clientName }}
Invoice Date: {{ invoiceDate }}
Amount: {{ amount }}
new Vue({
el: ‘#invoiceForm’,
data: {
clientName: ”,
invoiceDate: ”,
amount: ”
},
methods: {
addInvoice: function() {
let invoiceDetails = {
clientName: this.clientName,
invoiceDate: this.invoiceDate,
amount: this.amount
};
// Send the invoice data to Laravel backend for processing
// …
// After processing, update the invoice template
document.getElementById(‘invoiceTemplate’).innerHTML = `
Invoice Details
Client Name: ${invoiceDetails.clientName}
Invoice Date: ${invoiceDetails.invoiceDate}
Amount: ${invoiceDetails.amount}
`;
}
}
});
new video please
Eagerly Waiting for the next tutorial of this project
👍👍👍
Hello friend, at what point do you move the project from development to production? What steps do you follow to run `npm run prod` successfully? Best regards and thank you very much.
Waiting for the next tutorial of this project ✍
hey dude i just watched all your videos but i need more than that. So can u make more ? please
thank you, excellent
Please make more project using laravel and vue js. Something like sweet alert, chartjs, toastify, step form using vuejs approach
Waiting for the next tutorial of this project
Please public portfolio-website. Im training on it. Thanks bro.
Can't find your porfolio website in larave and vue js I was in the middle of building process ;(
Great!
Need for new lessons
hello where is your porfolio website in larave and vue js gone from youtube
So glad I found this channel!
Very good Project. please complete. thank you
Please complete this project and make E-commerce kind of project with Vue3 + Pinia + Laravel with login and everything.
Thank you
Very good !!!
thanks for today's tutorial.