PHP code example of steelants / booking

1. Go to this page and download the library: Download steelants/booking library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

steelants / booking example snippets




namespace App\Livewire;

use SteelAnts\Booking\Livewire\Calendar;

class CustomCalendar extends Calendar
{

    public function mount()
    {
        $this->renderType = 'freehand';
        $this->dateFrom = date('Y-m-d', strtotime('today'));
        $this->dateTo = date('Y-m-d', strtotime('+7 days'));
        $this->selectedDay = date('Y-m-d', strtotime('today'));

        // -avilable
                'text' => 'test free', // display text
            ],
            [
                'datetime_from' => date('Y-m-d 09:00:00', strtotime('today')), // datetime string
                'datetime_to' => date('Y-m-d 11:15:00', strtotime('today')), // datetime string
                'status' => 'reserved', // available, reserved, partially-avilable
                'text' => 'test reserved', // display text
            ],
        ];
    }
}
bash
php artisan vendor:publish --tag=booking-assets