PHPackages                             edulazaro/wireschedule - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. edulazaro/wireschedule

ActiveLibrary[Templating &amp; Views](/categories/templating)

edulazaro/wireschedule
======================

Self-hosted meeting scheduler for Laravel (a Calendly alternative). Config-driven availability, own database, Livewire UI. Themeable through the wire\* family — shares look with wiremodal, wiretoast, wirecookies and wirebug.

1.0.1(1mo ago)010MITPHPPHP ^8.2

Since Jul 12Pushed 1mo agoCompare

[ Source](https://github.com/edulazaro/wireschedule)[ Packagist](https://packagist.org/packages/edulazaro/wireschedule)[ RSS](/packages/edulazaro-wireschedule/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (2)Dependencies (3)Versions (3)Used By (0)

[![Wireschedule](art/banner.png)](art/banner.png)

Wireschedule
============

[](#wireschedule)

Self-hosted meeting scheduler for Laravel, a lightweight on-brand alternative to Calendly. Availability is defined in config, bookings live in your own database, and the UI is a Livewire component you drop anywhere. Part of the `wire*` family: themeable through the shared `data-wire-theme` attribute, visually coherent with [wiremodal](https://github.com/edulazaro/wiremodal), [wiretoast](https://github.com/edulazaro/wiretoast), [wirecookies](https://github.com/edulazaro/wirecookies) and [wirebug](https://github.com/edulazaro/wirebug).

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 11+
- Livewire 3

Installation
------------

[](#installation)

```
composer require edulazaro/wireschedule
php artisan migrate
```

Import the CSS in your bundle:

```
@import '../../vendor/edulazaro/wireschedule/resources/css/wireschedule.css';
```

Usage
-----

[](#usage)

Drop the scheduler anywhere:

```

```

Pick the theme once on `` (shared with the rest of the family):

```

```

How it works
------------

[](#how-it-works)

- **Availability** is declared per event type in `config/wireschedule.php`: weekly recurring ranges (in the organiser's timezone), slot duration, buffer, how far ahead bookings are allowed and minimum notice.
- **Free slots** are computed as that availability minus the bookings already in your `wireschedule_bookings` table. The visitor's browser timezone is detected and used to display and store times; everything is persisted in UTC.
- **No third party**: lead data stays in your database. A unique `(event_type, starts_at)` index prevents double-booking, re-checked at confirm time to avoid races.

Config
------

[](#config)

```
php artisan vendor:publish --tag=wireschedule-config
```

```
'timezone' => 'Europe/Madrid',      // organiser timezone
'ask' => ['phone' => true, 'notes' => true],
'notify' => ['to' => null],         // organiser email notified on each booking (null = no notice)
'events' => [
    'demo' => [
        'label' => 'Demo',
        'duration' => 30, 'buffer' => 0, 'days_ahead' => 21, 'min_notice' => 120,
        'availability' => [
            1 => [['10:00','14:00'], ['16:00','18:00']],  // 1 = Monday ... 7 = Sunday
        ],
    ],
],
```

Reading bookings
----------------

[](#reading-bookings)

```
use EduLazaro\WireSchedule\Models\Booking;

Booking::ofType('demo')->confirmed()->upcoming()->orderBy('starts_at')->get();
$booking->booker;   // polymorphic: who booked (User, ... or null for guests)
```

Events
------

[](#events)

- `wireschedule-booked` is dispatched on the Livewire component after a successful booking (with the `id`), so the host app can toast or track it.

Sponsors
--------

[](#sponsors)

Wireschedule is supported by the following sponsors. Thank you for keeping it growing:

 [![Kenodo](art/logo-kenodo.png)](https://kenodo.com) [Kenodo](https://kenodo.com) [![AndorraDev](art/logo-andorradev.png)](https://andorradev.com) [AndorraDev](https://andorradev.com)

Author
------

[](#author)

Created by [Edu Lazaro](https://edulazaro.com)

License
-------

[](#license)

Wireschedule is open-sourced software licensed under the [MIT license](LICENSE.md).

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance90

Actively maintained with recent releases

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

50d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6a3c47449dfb2ec121aa410da024f47586b87cc2799a825f0418e6c5e5904955?d=identicon)[edulazaro](/maintainers/edulazaro)

---

Top Contributors

[![edulazaro](https://avatars.githubusercontent.com/u/7797530?v=4)](https://github.com/edulazaro "edulazaro (3 commits)")

---

Tags

schedulerlaravelbladelivewirecalendarbookingMeetings

### Embed Badge

![Health badge](/badges/edulazaro-wireschedule/health.svg)

```
[![Health](https://phpackages.com/badges/edulazaro-wireschedule/health.svg)](https://phpackages.com/packages/edulazaro-wireschedule)
```

###  Alternatives

[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k104.7M370](/packages/laravel-horizon)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k17.6M165](/packages/laravel-pulse)[tallstackui/tallstackui

TallStackUI is a powerful suite of Blade components that elevate your workflow of Livewire applications.

731189.9k18](/packages/tallstackui-tallstackui)[livewire/flux

The official UI component library for Livewire.

97010.1M172](/packages/livewire-flux)[mati365/ckeditor5-livewire

CKEditor 5 integration for Laravel Livewire

4610.4k](/packages/mati365-ckeditor5-livewire)[hasinhayder/tyro-dashboard

Powerful and feature-rich dashboard for Laravel 13 and 12. Comes with complete authentication, user management, roles and privilege management, media management and dynamic CRUD

5585.6k](/packages/hasinhayder-tyro-dashboard)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
