Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dasundev/laravel-errors.com
Our goal is help the Laravel community to find the best solution for the errors they encounter.
https://github.com/dasundev/laravel-errors.com
alpine filamentphp laravel livewire
Last synced: 9 days ago
JSON representation
Our goal is help the Laravel community to find the best solution for the errors they encounter.
- Host: GitHub
- URL: https://github.com/dasundev/laravel-errors.com
- Owner: dasundev
- License: mit
- Created: 2024-04-01T17:40:38.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-06T12:31:47.000Z (7 months ago)
- Last Synced: 2024-10-17T19:16:26.281Z (27 days ago)
- Topics: alpine, filamentphp, laravel, livewire
- Language: PHP
- Homepage: https://laravel-errors.com
- Size: 973 KB
- Stars: 16
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Errors
Laravel Errors is an **open-source** project designed to assist developers in finding solutions for errors encountered in their day-to-day coding life. So your contribution is invaluable to the ongoing enhancement of this project. Together, we can continue to improve Laravel Errors and make it even more beneficial for developers everywhere.
------
## 📝 Requirements
- PHP 8.2 - with SQLite, GD, and other common extensions.
- Node.js 16 or more recent.## 👥 Contribution
To contribute, ensure you meet the aforementioned requirements and follow these steps:
Clone the repository and switch to a new branch:
```bash
git clone https://github.com/dasundev/laravel-errors.com.gitcd laravel-errors.com
git checkout -b feat/your-feature # or fix/your-fix
```> Avoid pushing directly to the main branch. Instead, create a new branch and push your changes to it.
Install dependencies using Composer and NPM:
```bash
composer installnpm install
```Set up your environment file:
```bash
cp .env.example .envphp artisan key:generate
```Prepare your database and run the migrations:
```bash
touch database/database.sqlitephp artisan migrate
```Build assets in watch mode in a separate terminal:
```bash
npm run dev
```Finally, start the development server:
```bash
php artisan serve
```After completing your code changes, run the test suite:
```bash
composer test
```If all tests pass, commit your changes, push your branch, and create a pull request:
```bash
git commit -am "your commit message"git push
```## 📄 License
Laravel Errors is open-sourced software licensed under the [MIT](https://opensource.org/licenses/MIT) license.