bbcreation / calendar
Best Calendar Library to Render Fancy Gantt Events with Laravel 5 Compatibility
dev-master
2018-09-11 19:53 UTC
Requires
- php: >=5.5.9
- illuminate/support: 5.*
This package is auto-updated.
Last update: 2025-03-12 11:05:21 UTC
README
Laravel 5 Calendar
##Information
This package is a clone of codeapps/calendar with appearance changes and to work in Laravel version > 5.2.
##Installation
Require bbcreation/calendar in composer.json and run composer update.
{
"require": {
"laravel/framework": "5.2.*",
...
"codeapps/calendar": "dev-master"
}
...
}
Composer will download the package. After the package is downloaded, open config/app.php and add the service provider and alias as below:
'providers' => array(
...
'Codeapps\Calendar\CalendarServiceProvider::class',
),
'aliases' => array(
...
'Calendar' => 'Codeapps\Calendar\Facades\Calendar::class',
),
Finally you need to publish a configuration file by running the following Artisan command.
php artisan vendor:publish
Include css in your view
<link rel="stylesheet" type="text/css" href="{{ asset('css/calendar.css') }}">
Create a Controller
use Codeapps\Calendar\Calendar as Calendar;
public function create()
{
$data[] = [
'label' => 'Label',
'class' => 'blue',
'events' => [
[
'label' => 'Codeapps',
'start' => '2015-06-19 08:30:16',
'end' => '2015-06-23 10:30:16',
'class' => '',
'icon' => 'fa-arrow-down'
]
]
];
return view('orders.create', compact('data'));
}
Create a View and Add
{!! Calendar::render($data,['title'=>'Codeapps'])!!}