Skip to content

A Carbon utility useful for sorting out availability and producing calendly-like results.

License

Notifications You must be signed in to change notification settings

wearebraid/carbon-availability

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CarbonAvailability

Build Status

Given some available times and some unavailable times how do you determine what time slots you can schedule an event of a certain duration (think something like calendly)? Well – it's surprisingly hard – unless you're using this.

use Braid\CarbonAvailability;

/**
 * [==========]                            | Available time blocks
 *               [========]                |
 *                        [==========]     | ______________________
 *                    [xxxxxxx]            | Booked time blocks
 *                                [x]      | ______________________
 * [==========] [====]         [=]         | Merged availability
 * |  |  |  |   |  |           |           | Available sessions
 */

$availability = [
    ['2019-01-01 09:00:00', '2019-01-01 10:00:00'],
    ['2019-01-01 10:15:00', '2019-01-01 11:00:00'],
    ['2019-01-01 11:00:00', '2019-01-01 12:00:00']
];

$booked = [
    ['2019-01-01 10:45:00', '2019-01-01 11:30:00'],
    ['2019-01-01 11:50:00', '2019-01-01 11:55:00']
];

$availability = new CarbonAvailability($availability, $booked);
$startTimes = $availability->session('15 minutes');
/* Returns the following Carbon\Carbon date times (2019-01-01):
09:00
09:15
09:30
09:45
10:15
10:30
11:30
*/

Installation

composer require wearebraid/carbon-availability

About

A Carbon utility useful for sorting out availability and producing calendly-like results.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages