Laravel Server for Quiniela Sembradores app, it contains a filament admin ui
  • PHP 72.1%
  • Blade 27.2%
  • Dockerfile 0.3%
  • JavaScript 0.2%
  • CSS 0.1%
  • Other 0.1%
Find a file
2026-05-01 13:16:04 -06:00
app Show current rank for active pool instead of user. 2026-05-01 13:16:04 -06:00
bootstrap Trust all reverse proxy 2026-04-02 09:48:37 -06:00
config change redirect URL to use app url on services config 2026-04-02 10:10:30 -06:00
database Add ability to create multiple pools for user. 2026-04-28 18:29:16 -06:00
docker Change nginx conf 2026-04-02 09:53:52 -06:00
public Add filament 2026-03-19 23:05:42 -06:00
resources Initial commit 2026-03-19 18:18:18 -06:00
routes Add ability to create multiple pools for user. 2026-04-28 18:29:16 -06:00
storage Initial commit 2026-03-19 18:18:18 -06:00
tests Add some filament resources. 2026-03-19 23:45:46 -06:00
.editorconfig Initial commit 2026-03-19 18:18:18 -06:00
.env.docker.example Fixed some docker stuff. 2026-03-30 17:19:16 -06:00
.env.example Add Google Oauth and prepare for Apple 2026-03-30 18:15:44 -06:00
.env.prod.example Add production Docker setup and Apple Sign In secret generator 2026-04-01 22:51:24 -06:00
.gitattributes Initial commit 2026-03-19 18:18:18 -06:00
.gitignore Add production Docker setup and Apple Sign In secret generator 2026-04-01 22:51:24 -06:00
artisan Initial commit 2026-03-19 18:18:18 -06:00
composer.json Add Google Oauth and prepare for Apple 2026-03-30 18:15:44 -06:00
composer.lock Add Google Oauth and prepare for Apple 2026-03-30 18:15:44 -06:00
docker-compose.prod.yml Fix IPs 2026-04-01 23:04:36 -06:00
docker-compose.yml Expose dev mysql port and add command to add mock user data 2026-04-08 23:41:00 -06:00
package-lock.json Initial commit 2026-03-19 18:18:18 -06:00
package.json Initial commit 2026-03-19 18:18:18 -06:00
phpunit.xml Initial commit 2026-03-19 18:18:18 -06:00
README.md Fixed some docker stuff. 2026-03-30 17:19:16 -06:00
vite.config.js Initial commit 2026-03-19 18:18:18 -06:00

Laravel Logo

Build Status Total Downloads Latest Stable Version License

Docker Setup

  1. Create Docker env file:

    cp .env.docker.example .env.docker
    
  2. Set your APP_KEY in .env.docker (you can reuse the one from your current .env).

  3. Start containers:

    docker compose up -d --build
    
  4. Run Artisan from inside the app container so scheduler and manual commands use the same env:

    docker compose exec app php artisan migrate
    docker compose exec app php artisan schedule:work
    

If you want a one-shot scheduler run instead of a worker loop:

docker compose exec app php artisan schedule:run -v

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.

In addition, 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.

You can also watch bite-sized lessons with real-world projects on Laravel Learn, where you will be guided through building a Laravel application from scratch while learning PHP fundamentals.

Agentic Development

Laravel's predictable structure and conventions make it ideal for AI coding agents like Claude Code, Cursor, and GitHub Copilot. Install Laravel Boost to supercharge your AI workflow:

composer require laravel/boost --dev

php artisan boost:install

Boost provides your agent 15+ tools and skills that help agents build Laravel applications while following best practices.

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.