ognjenm / reservations-calendar by ognjenm

This is rewriten [https://github.com/bastianallgeier/gantti] Gantt Class to fit my needs Eg. To show multiple events (bookings) per resource and Laravel 4 compatibility
87
18
4
Package Data
Maintainer Username: ognjenm
Maintainer Contact: ognjen.miletic@gmail.com (Ognjen Miletic)
Package Create Date: 2015-06-22
Package Last Update: 2015-08-17
Home Page:
Language: PHP
License: Unknown
Last Refreshed: 2024-05-03 03:03:47
Package Statistics
Total Downloads: 87
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 18
Total Watchers: 4
Total Forks: 8
Total Open Issues: 2

#Laravel 5 Booking calendar ##About This is rewriten [https://github.com/bastianallgeier/gantti] Gantt Class to fit my needs Eg. To show multiple events (bookings) per resource and Laravel 5 compatibility

##Screenshot

##Installation

Require ognjenm/reservations-calendar in composer.json and run composer update.

{
    "require": {
        "laravel/framework": "5.1.*",
        ...
        "ognjenm/reservations-calendar": "*"
    }
    ...
}

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(
    ...
    'Ognjenm\ReservationsCalendar\ReservationsCalendarServiceProvider',
),



'aliases' => array(
    ...
    'ResCalendar'     => 'Ognjenm\ReservationsCalendar\Facades\ResCalendar',
),

Finally you need to publish a configuration file by running the following Artisan command.

php artisan vendor:publish --tag=public --force

Include css in your view

<link href="/public/vendor/ognjenm/calendar.css" rel="stylesheet" type="text/css">

###Examples

Prepare data


$data[] = [
            'label' => 'Soba 1',
        	'info' => '2+1',
        	'class' => 'blue',
            'events' => [

                    [
                    'label' => 'Ognjen Miletic',
                    'tooltip' => '<h5>Potvrdjena rezervacija</h5><br><p>od: 19.06.2015</p><p>do: 23.06.2015</p><p>Ukupno: 578 EUR</p>',
                    'url' => 'http://google.com',
                    'start' => '2015-06-19',
                    'end'   => '2015-06-23',
                    'class' => '',
                    'icon' => 'fa-arrow-down'
                    ],
                    [
                            'label' => 'Madona i ekipa',
                            'tooltip' => '<h5>Potvrdjena rezervacija</h5><br>
<p>od: 19.06.2015</p><p>do: 23.06.2015</p><p>Ukupno: 1578 EUR</p>',
                            'start' => '2015-06-10',
                            'end'   => '2015-06-19',
                            'class' => 'checkout',
                            'icon' => 'fa-sign-out'
                    ],
                    [
                            'label' => 'Jovan Jovanovic Zmaj',
                            'start' => '2015-06-23',
                            'end'   => '2015-06-30',
                            'class' => 'uncomfirmed',
                            'icon' => 'fa-question'
                    ],
                    [
                            'label' => 'Nikola Nikolic',
                            'tooltip' => '<h5>This is some html</h5>',
                            'url' => 'http://google.com',
                            'start' => '2015-06-30',
                            'end'   => '2015-07-15',
                            'class' => 'stay'
                    ],
            ]

            ];

    }

Render calendar

{!! ResCalendar::render($data,['title'=>'Hotel'])!!}

##Contributions are welcomed