All Projects → skyrpex → Laravel Nuxt

skyrpex / Laravel Nuxt

Licence: mit
Build a SPA with Laravel and Nuxt.

Projects that are alternatives of or similar to Laravel Nuxt

Laravel Nuxt
A Laravel-Nuxt starter kit.
Stars: ✭ 943 (+660.48%)
Mutual labels:  laravel, nuxt, spa
Awes Io
Awes.io // boilerplate based on Vue, Nuxt, TailwindCSS plus Laravel as a backend. 🤟
Stars: ✭ 599 (+383.06%)
Mutual labels:  laravel, nuxt, spa
Laravel Vuejs.com
Laravel and VueJs Blog, using Laravel nova, GraphQL, NuxtJs, Apollo and ...more
Stars: ✭ 54 (-56.45%)
Mutual labels:  laravel, nuxt, spa
Laravel Nuxt Js
Build a SPA with Laravel and Nuxt.
Stars: ✭ 146 (+17.74%)
Mutual labels:  laravel, nuxt, spa
Enso
Laravel Vue SPA, Bulma themed. For demo login use `[email protected]el-enso.com` & `password` -
Stars: ✭ 959 (+673.39%)
Mutual labels:  laravel, spa
Hoppscotch
👽 Open source API development ecosystem https://hoppscotch.io
Stars: ✭ 34,569 (+27778.23%)
Mutual labels:  nuxt, spa
Opencart
Free PWA & SPA for OpenCart
Stars: ✭ 50 (-59.68%)
Mutual labels:  nuxt, spa
Laravel Vuetify Spa
Laravel-Vue SPA starter project template with Vuetify frontend.
Stars: ✭ 73 (-41.13%)
Mutual labels:  laravel, spa
Photo Blog
The Photo Blog Application based on Laravel 5 and Vue.js 2 + Prerender
Stars: ✭ 55 (-55.65%)
Mutual labels:  laravel, spa
Laravel Vue Starter
Well Documented Laravel Starter App From Development to Production. For Full Blown RESTFUL API and SPA with Beautiful UI Using Buefy / ElementUi For Reusable Vue Components
Stars: ✭ 76 (-38.71%)
Mutual labels:  laravel, spa
Laranuxt
Laravel and Nuxt.js boilerplate
Stars: ✭ 98 (-20.97%)
Mutual labels:  laravel, nuxt
Spa Starter Kit
A highly opinionated starter kit for building Single Page Applications with Laravel and Vue.js
Stars: ✭ 933 (+652.42%)
Mutual labels:  laravel, spa
Running Time
Sample Single Page Application using Laravel & Vue.js + Vuex + Vue-Router
Stars: ✭ 90 (-27.42%)
Mutual labels:  laravel, spa
Vue Laravel Spa
Single Page Application made with Vue.JS2, Vue Router, Vuex and Laravel 5.6.
Stars: ✭ 107 (-13.71%)
Mutual labels:  laravel, spa
Vuefront Nuxt
Vuefront Nuxt module for building components based on config.
Stars: ✭ 16 (-87.1%)
Mutual labels:  nuxt, spa
Prestashop
Free PWA & SPA for PrestaShop
Stars: ✭ 59 (-52.42%)
Mutual labels:  nuxt, spa
Laqul
A complete starter kit that allows you create amazing apps that look native thanks to the Quasar Framework. Powered by an API developed in Laravel Framework using the easy GraphQL queries language. And ready to use the Google Firebase features.
Stars: ✭ 110 (-11.29%)
Mutual labels:  laravel, spa
wordpress
Free PWA & SPA for Wordpress & Woocommerce
Stars: ✭ 103 (-16.94%)
Mutual labels:  spa, nuxt
Roastandbrew
Updated content available! We learned a lot since we originally wrote this article. We now have this updated for Laravel 8, Vue, and NuxtJS 👉 https://srvrsi.de/book
Stars: ✭ 300 (+141.94%)
Mutual labels:  laravel, spa
Nuxt Chat App
Frontend of real-time chat application built using nuxtjs, socket.io. Check the backend at https://github.com/binbytes/chat-app-server.
Stars: ✭ 77 (-37.9%)
Mutual labels:  nuxt, spa

Warning: this project has been deprecated

laravel-nuxt was created to offer some sugar when working locally with Laravel+Nuxt, solving some cookie problems in the process. Today, it isn't necessary anymore.

We recommend using Laravel Sanctum, which plays nicely with SPAs (see Sanctum's SPA Authentication section). If you can't migrate, just keep using laravel-nuxt.

Laravel Nuxt

This package allows you to build a SPA with Laravel and Nuxt.

Installation

composer require pallares/laravel-nuxt

In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:

return [
  // ...
  'providers' => [
      // ...
      Pallares\LaravelNuxt\LaravelNuxtServiceProvider::class,
  ],
];

You need to add a fallback route that will render the SPA page in routes/web.php file:

// ...
// Add this route the last, so it doesn't interfere with your other routes.
Route::get(
    '{uri}',
    '\\'.Pallares\LaravelNuxt\Controllers\NuxtController::class
)->where('uri', '.*');

Finally, you must install the laravel-nuxt npm package. After following the instructions, run npm run build and try your SPA!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].