jailtonpaula/laravel-base

Template Laravel com SASS, jQuery e Gulp para desenvolvimento rápido.

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Language:Blade

Type:project

pkg:composer/jailtonpaula/laravel-base

dev-master 2025-10-27 04:18 UTC

This package is auto-updated.

Last update: 2025-10-27 04:23:08 UTC


README

Laravel Logo

Build Status Total Downloads Latest Stable Version License

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Learning Laravel

Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.

You may also try the Laravel Bootcamp, where you will be guided through building a modern Laravel application from scratch.

If you don't feel like reading, Laracasts can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.

Laravel Sponsors

We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel Partners program.

Premium Partners

Contributing

Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.

Code of Conduct

In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.

Security Vulnerabilities

If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via taylor@laravel.com. All security vulnerabilities will be promptly addressed.

License

The Laravel framework is open-sourced software licensed under the MIT license.

Laravel Base Template

Template Laravel otimizado para desenvolvimento rápido e eficiente, com SASS, jQuery e Gulp pré-configurados.

🚀 Instalação

Crie um novo projeto usando este template:

composer create-project jailtonpaula/laravel-base meu-novo-projeto

🛠️ Tecnologias Incluídas

  • Laravel 12: Framework PHP robusto e moderno
  • SASS: Pré-processador CSS para estilos organizados
  • jQuery: Biblioteca JavaScript para manipulação de DOM
  • Gulp: Automatização de tarefas para desenvolvimento frontend
  • Oracle & PostgreSQL: Configurações prontas para múltiplos bancos
  • Localização pt-BR: Interface em português brasileiro

📦 O que está incluso

  • ✅ Estrutura SASS organizada com variáveis centralizadas
  • ✅ Sistema de toasts configurado (sucesso, erro, alerta, neutro)
  • ✅ Tela de login estilo glass com animações
  • ✅ Middleware de autenticação por sessão
  • ✅ Service para versionamento automático de assets
  • ✅ Preloader customizável
  • ✅ Gulpfile configurado para desenvolvimento
  • ✅ Configurações de banco Oracle e PostgreSQL

🚦 Primeiros Passos

Após criar o projeto com composer create-project jailtonpaula/laravel-base meu-projeto:

  1. Configure o nome da aplicação no arquivo .env:

    APP_NAME="Meu Sistema"
    
  2. Configure o banco de dados no .env:

    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=meu_banco
    DB_USERNAME=usuario
    DB_PASSWORD=senha
    
  3. Execute as migrações:

    php artisan migrate
  4. Para desenvolvimento:

    npm run dev
    php artisan serve

📁 Estrutura SASS

resources/sass/
├── _main.sass      # Variáveis principais e cores
├── _preload.sass   # Estilos do preloader
├── _toast.sass     # Sistema de notificações
└── login.sass      # Tela de login

🎨 Classes JavaScript

  • Toast: Sistema de notificações
  • Preload: Controle do carregamento
  • FileVersionService: Versionamento de assets

📝 Uso dos Toasts

Toast.success('Operação realizada com sucesso!');
Toast.error('Erro ao processar!', true); // fixo
Toast.alert('Atenção necessária!');
Toast.neutral('Informação geral');

Desenvolvido por Jailton Paula para acelerar o desenvolvimento de projetos Laravel.