Is there any chance to install Laravel 8 without Jetstream? I want to use Laravel 8 + Inertiajs + Vue.js + Tailwind. Unfortunately Orchid admin panel compatible just with Laravel 8; that's why I have to use Laravel 8.
-
1Did you actually check the Laravel documentation on this topic? It clearly states it's not required to use Jetstream. You might just need to do some more frontend coding yourself. So the answer is: yes, you can install laravel without Jetstream. – Maarten Veerman Dec 19 '20 at 21:39
6 Answers
Yes, you can install laravel 8 without Jetstream, Jetstream is used for Auth, if you decide to create your auth by yourself you are free, or you can use Laravel Breeze if you are anti-Jetstream for Auth
composer create-project laravel/laravel nameofprojectt --prefer-dist
if I get your question very well, that will just install a laravel project without Jetstream

- 549
- 1
- 5
- 16
Yes, Laravel 8 is by default getting installed without Jetstream.
You can run the following command to start working without Jetstream.
Windows / MacOS:
curl -s https://laravel.build/example-app | bash
Don't forget to repalce "example-app" with the project/directory name you want to give it.
Also I recommend to look at Laravel Sail for an easy development server:

- 42
- 2
yeah you can
create project laravel
$ laravel new blog
replace blog by your project name then go to inertia website, follow the steps and install inertia and vuejs then install tailwindcss it's work

- 1,129
- 10
- 14
Yes you can
with composer
composer create-project laravel/laravel example-app
cd example-app
php artisan serve
if you have composer installed you can use this command line:
composer create-project laravel/laravel App_Name

- 4,044
- 9
- 32
- 39

- 24
- 5
First Install new Laravel project using the below command:
composer create-project --prefer-dist laravel/laravel YourProject
After that install InertiaJS in your project. For more information go to the below link:

- 2,664
- 3
- 24
- 38