latfur / laravel-event-crud
Laravel Event CRUD With Full Calendar
Installs: 5 523
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 1
Forks: 10
Open Issues: 2
Language:HTML
This package is not auto-updated.
Last update: 2025-05-25 08:58:54 UTC
README
Laravel Event CRUD with Full calendar
Features
- Responsive Design.
- Create ,Edit and Delete Event.
- Event view in calendar and list.
- Front end validation
- Back end validation
Resource:
- Bootstrap
- Fullcalendar
- Parsley js
- Bootstrap Datetimepicker
Installation
Event CRUD is a Laravel package so you can install it via Composer. Run this command in your terminal from your project directory:
composer require latfur/laravel-event-crud
Wait for a while, Composer will automatically install Event CRUD in your project.
Configuration
When the download is complete, you have to call this package service in config/app.php
config file. To do that, add this line in app.php
in providers
section:
Latfur\Event\EventServiceProvider::class,
Now run this command in your terminal to publish this package resources:
php artisan vendor:publish --provider="Latfur\Event\EventServiceProvider"
After running this command, all necessary file will be included in your project. This package has two default migrations. So you have to run migrate command like this. (But make sure your database configuration is configured correctly.)
php artisan migrate
Usage
It is very easy to use.