[Vuejs]-Implementing SPA on Laravel blade php with Vue js

1๐Ÿ‘

โœ…

Not possible ..laravel have some standards that need to follow

Blade view files use the .blade.php file extension and are typically stored in the resources/views directory.

SPA are fast since most resources (HTML,CSSS,Scripts etc) and DOM components are only loaded once throughout the entire cycle of an application. Subsequently, only dynamic content is loaded by JS, which speeds up the site remarkably.
If you are using blade then it needs to reload for every changes to reflect then what points of using it

Refer this: https://laravel-news.com/using-vue-router-laravel

0๐Ÿ‘

Personally I would opt for L8 with inertiajs(vuejs) which is integrated in the documentation and you can easily make a SPA

Leave a comment