{"id":19240857,"url":"https://github.com/matviyroman/calendar-laravel-php-sql","last_synced_at":"2026-06-13T06:33:29.047Z","repository":{"id":201174042,"uuid":"707128708","full_name":"MatviyRoman/Calendar-Laravel-PHP-SQL","owner":"MatviyRoman","description":"Calendar Laravel PHP/SQL","archived":false,"fork":false,"pushed_at":"2026-01-30T23:21:21.000Z","size":562,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-31T15:08:28.429Z","etag":null,"topics":["calendar","laravel-calendar","laravel-framework","laravel-php-sql"],"latest_commit_sha":null,"homepage":"https://roman.matviy.pp.ua","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MatviyRoman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-19T09:26:43.000Z","updated_at":"2025-11-16T12:00:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"aa99fe92-b32c-4a1b-9084-1a12cd557852","html_url":"https://github.com/MatviyRoman/Calendar-Laravel-PHP-SQL","commit_stats":null,"previous_names":["matviyroman/calendar-laravel-php-sql"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MatviyRoman/Calendar-Laravel-PHP-SQL","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatviyRoman%2FCalendar-Laravel-PHP-SQL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatviyRoman%2FCalendar-Laravel-PHP-SQL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatviyRoman%2FCalendar-Laravel-PHP-SQL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatviyRoman%2FCalendar-Laravel-PHP-SQL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MatviyRoman","download_url":"https://codeload.github.com/MatviyRoman/Calendar-Laravel-PHP-SQL/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatviyRoman%2FCalendar-Laravel-PHP-SQL/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34275068,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["calendar","laravel-calendar","laravel-framework","laravel-php-sql"],"created_at":"2024-11-09T17:09:17.638Z","updated_at":"2026-06-13T06:33:29.035Z","avatar_url":"https://github.com/MatviyRoman.png","language":"PHP","funding_links":["https://patreon.com/taylorotwell"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://laravel.com\" target=\"_blank\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg\" width=\"400\" alt=\"Laravel Logo\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/laravel/framework/actions\"\u003e\u003cimg src=\"https://github.com/laravel/framework/workflows/tests/badge.svg\" alt=\"Build Status\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/dt/laravel/framework\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/v/laravel/framework\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/l/laravel/framework\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\n\n1) Install Composer Dependencies:\n\nUse composer install to install the PHP dependencies specified in your composer.json file. This command is necessary for Laravel to load its PHP libraries and packages.\n\n2) Connect the Database\n\nOpen the .env File: Locate the .env file in your Laravel project's root directory and open it in a text editor.\n\nSet Database Connection and Credentials: Inside the .env file, you'll find the following lines for configuring the database connection:\n\nenv\nCopy code\nDB_CONNECTION=mysql\nDB_HOST=127.0.0.1\nDB_PORT=3306\nDB_DATABASE=your_database_name\nDB_USERNAME=your_database_username\nDB_PASSWORD=your_database_password\nReplace the placeholders with your actual database connection details. Here's a brief explanation of each line:\n\nDB_CONNECTION: Specifies the type of database connection (e.g., MySQL, PostgreSQL).\nDB_HOST: Specifies the host where your database server is running (usually \"127.0.0.1\" for local development).\nDB_PORT: Specifies the port number for the database server (e.g., 3306 for MySQL).\nDB_DATABASE: Set the name of your database.\nDB_USERNAME: Specify the username to connect to the database.\nDB_PASSWORD: Provide the password for the database user.\nSave the .env File: After making the necessary changes, save the .env file.\n\n3) Run Migrations:\n\nUse php artisan migrate to execute the database migrations. Migrations create the required database tables based on your application's schema defined in migration files.\n\n4) Seed the Database:\n\nYou have a few options for seeding the database:\nRun individual seeders using php artisan db:seed --class=SeederClassName to populate specific tables.\nUse php artisan db:seed to run all the seeders defined in the DatabaseSeeder class.\nIf you have a user interface for seeding (e.g., a button on a web page site.com/events), you can use that option as well.\n\n5) Compile Assets (for Development):\n\nRun npm run dev to compile assets like JavaScript and CSS for development. This is useful during development to see changes in your application.\n\nClear configuration and route cache using php artisan config:clear config:cache and php artisan route:clear. These commands help ensure that your Laravel application uses the latest configuration and route information.\n\nUse composer dump-autoload to refresh the Composer autoloader, which is essential for class autoloading in your application.\n\n6) Compile Assets (for Production):\n\nRun npm run build to compile assets for production. The production build typically includes minification and optimization.\n\nCache configuration and routes using php artisan config:clear, config:cache, php artisan route:clear and php artisan route:cache. This significantly improves application performance in production.\n\nUse php artisan optimize to optimize the application's performance. This command generates a class map to speed up class loading.\n\n7) Finish\n\nCongratulations on completing your Laravel project for the event calendar! If you have any more specific questions or need assistance with any part of your project, please feel free to ask. Good luck with your development and deployment!\n\nAuthor: Roman Matviy\nWebsite: https://roman.matviy.pp.ua\n\nWebsite: https://matviy.pp.ua\n\n## About Laravel\n\nLaravel 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:\n\n- [Simple, fast routing engine](https://laravel.com/docs/routing).\n- [Powerful dependency injection container](https://laravel.com/docs/container).\n- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.\n- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).\n- Database agnostic [schema migrations](https://laravel.com/docs/migrations).\n- [Robust background job processing](https://laravel.com/docs/queues).\n- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).\n\nLaravel is accessible, powerful, and provides tools required for large, robust applications.\n\n## Learning Laravel\n\nLaravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.\n\nYou may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch.\n\nIf you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 2000 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.\n\n## Laravel Sponsors\n\nWe 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 [Patreon page](https://patreon.com/taylorotwell).\n\n### Premium Partners\n\n- **[Vehikl](https://vehikl.com/)**\n- **[Tighten Co.](https://tighten.co)**\n- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**\n- **[64 Robots](https://64robots.com)**\n- **[Cubet Techno Labs](https://cubettech.com)**\n- **[Cyber-Duck](https://cyber-duck.co.uk)**\n- **[Many](https://www.many.co.uk)**\n- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**\n- **[DevSquad](https://devsquad.com)**\n- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**\n- **[OP.GG](https://op.gg)**\n- **[WebReinvent](https://webreinvent.com/?utm_source=laravel\u0026utm_medium=github\u0026utm_campaign=patreon-sponsors)**\n- **[Lendio](https://lendio.com)**\n\n## Contributing\n\nThank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).\n\n## Code of Conduct\n\nIn order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).\n\n## Security Vulnerabilities\n\nIf you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.\n\n## License\n\nThe Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatviyroman%2Fcalendar-laravel-php-sql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatviyroman%2Fcalendar-laravel-php-sql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatviyroman%2Fcalendar-laravel-php-sql/lists"}