Dilomarkt---Digitaler-Lokal.../Dilomarkt/dilomarkt-api
2026-06-30 11:54:45 +02:00
..
app Authentication & mini fixes 2026-06-30 11:54:45 +02:00
bootstrap Commit von Laravel .. 2026-06-12 13:37:56 +02:00
config Authentication & mini fixes 2026-06-30 11:54:45 +02:00
database Authentication & mini fixes 2026-06-30 11:54:45 +02:00
public Commit von Laravel .. 2026-06-12 13:37:56 +02:00
resources Commit von Laravel .. 2026-06-12 13:37:56 +02:00
routes Authentication & mini fixes 2026-06-30 11:54:45 +02:00
storage Commit von Laravel .. 2026-06-12 13:37:56 +02:00
tests Authentication & mini fixes 2026-06-30 11:54:45 +02:00
.editorconfig Commit von Laravel .. 2026-06-12 13:37:56 +02:00
.env.example Commit von Laravel .. 2026-06-12 13:37:56 +02:00
.gitattributes Commit von Laravel .. 2026-06-12 13:37:56 +02:00
.gitignore Commit von Laravel .. 2026-06-12 13:37:56 +02:00
artisan Commit von Laravel .. 2026-06-12 13:37:56 +02:00
composer.json Commit von Laravel .. 2026-06-12 13:37:56 +02:00
composer.lock Commit von Laravel .. 2026-06-12 13:37:56 +02:00
package-lock.json FixwegenDatenbank. 2026-06-17 10:18:25 +02:00
package.json Commit von Laravel .. 2026-06-12 13:37:56 +02:00
phpunit.xml Commit von Laravel .. 2026-06-12 13:37:56 +02:00
README.md Authentication & mini fixes 2026-06-30 11:54:45 +02:00
test_notify.php Authentication & mini fixes 2026-06-30 11:54:45 +02:00
vite.config.js Commit von Laravel .. 2026-06-12 13:37:56 +02:00

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 can also check out Laravel Learn, where you will be guided through building a modern Laravel application.

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.

SMTP Setup for Real Verification Emails

To deliver verification and password-reset emails to real inboxes (Gmail, Outlook, Yahoo, etc.), configure a real SMTP provider in .env.

Required .env values:

  • MAIL_MAILER=smtp
  • MAIL_HOST=<your-smtp-host>
  • MAIL_PORT=587
  • MAIL_USERNAME=<your-smtp-username>
  • MAIL_PASSWORD=<your-smtp-password>
  • MAIL_ENCRYPTION=tls
  • MAIL_FROM_ADDRESS=<verified-sender@your-domain>
  • MAIL_FROM_NAME="Dilomarkt"
  • QUEUE_CONNECTION=sync

After changing .env, run:

php artisan config:clear

Then test by registering with a real address and requesting password reset.

Important:

  • SMTP credentials must belong to a provider that allows outbound mail to external domains.
  • Use a verified sender address from that provider.
  • Delivery can still be filtered by recipient spam rules; verify SPF/DKIM for best inbox placement.