Create a simple news website using Laravel Jetstream, Inertia, and Vuejs

I Nyoman Jyotisa
4 min readMar 25, 2023

Creating a news website can be an exciting and rewarding experience, but it can also be daunting, especially if you’re new to web development. In this article, I’ll share my experience of building a simple news website using some of the latest web development technologies: Laravel Jetstream, Inertia.js, and Vue.js. These technologies allow us to create a fast and modern single-page application with a clean and intuitive user interface. Whether you’re looking to build a simple news website for personal use or as a business venture, this article will provide you with a step-by-step to get started. So, let’s dive in and start building!

When building a web application using Laravel, the first step is to create a new Laravel project. To create a new Laravel project, you need to have Laravel installed on your machine. If you don’t have Laravel installed, you can install it using Composer, which is a dependency manager for PHP.

Assuming you have Laravel installed on your machine, you can create a new Laravel project using the following command in your terminal.

laravel new news-crud

Next, install the Jetstream package using the following command.

composer require laravel/jetstream

--

--