
:elephant: A Laravel 8 SPA boilerplate with a users CRUD using Vue.js 2.6, GraphQL, Bootstrap 4, TypeScript, Sass, and Pug.
The Laravel Vue Boilerplate is a Laravel 8 Single Page Application boilerplate that utilizes Vue.js 2.6, GraphQL, Bootstrap 4, TypeScript, Sass, and Pug. It provides a users CRUD system for admin users using RESTful and GraphQL. It also includes i18n support for English, Portuguese, and Spanish based on browser language settings. The authentication system is built using Laravel Sanctum. Additionally, the boilerplate includes WebSockets with Laravel Echo and Pusher, and a working service worker with Workbox for better Progressive Web App (PWA) development. The Dockerfile is pre-configured with PHP 7.4, Node.js 12, Composer, MySQL, and phpMyAdmin using Docker Compose.
docker-compose up -d
npm run dev
.env.example file to .env and fill it with your local information.composer install
npm install
php artisan key:generate
php artisan vue-i18n:generate
php artisan migrate --seed
npm run dev
The Laravel Vue Boilerplate is a powerful boilerplate for developing Laravel 8 Single Page Applications using Vue.js. It provides essential features such as a users CRUD system, internationalization support, authentication, WebSockets, and service worker integration for PWA development. The inclusion of Docker and pre-configured dependencies make it easy to set up and start developing with. Overall, it offers a comprehensive starting point for building modern web applications with Laravel and Vue.

Laravel is a powerful and elegant PHP framework that provides developers with a comprehensive set of tools and features to build robust web applications. It follows the Model-View-Controller (MVC) architectural pattern, offering a clean and organized structure for writing efficient and maintainable code.
Vue.js is a lightweight and flexible JavaScript framework that allows developers to easily build dynamic and reactive user interfaces. Its intuitive syntax, modular architecture, and focus on performance make it a popular choice for modern web development.
Bootstrap is the most popular CSS Framework for developing responsive and mobile-first websites.
SCSS is a preprocessor scripting language that extends the capabilities of CSS by adding features such as variables, nesting, and mixins. It allows developers to write more efficient and maintainable CSS code, and helps to streamline the development process by reducing repetition and increasing reusability.
A website that uses Docker for containerization to streamline development, testing, and deployment workflows. This includes features such as containerization of dependencies, automated builds and deployments, and container orchestration to ensure scalability and availability.
A website that uses GraphQL as a query language to manage data fetching and state management. This includes features such as a strongly typed schema, client-side caching, and declarative data fetching to streamline data management and optimize website performance.
PostCSS is a popular open-source tool that enables web developers to transform CSS styles with JavaScript plugins. It allows for efficient processing of CSS styles, from applying vendor prefixes to improving browser compatibility, ultimately resulting in cleaner, faster, and more maintainable code.
Pug is a high-performance template engine for Node.js and browsers that enables developers to write HTML templates using a concise and intuitive syntax. It supports a range of features, including template inheritance, conditionals, loops, mixins, and more, and can be easily integrated into a variety of web frameworks and build tools.
TypeScript is a superset of JavaScript, providing optional static typing, classes, interfaces, and other features that help developers write more maintainable and scalable code. TypeScript's static typing system can catch errors at compile-time, making it easier to build and maintain large applications.