shahed/meeting-calendar 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

shahed/meeting-calendar

最新稳定版本:v2.0.0

Composer 安装命令:

composer require shahed/meeting-calendar

包简介

A reusable Livewire meeting calendar component for Laravel 10–12.

README 文档

README

A beautiful, reusable Livewire meeting calendar component for Laravel 10–12.

Installation

composer require shahed/meeting-calendar

Requirements

  • PHP ^8.2
  • Laravel ^10.0|^11.0|^12.0
  • Livewire ^3.0

Usage

1. Create meetings table migration

php artisan make:migration create_meetings_table

Add this to your migration:

Schema::create('meetings', function (Blueprint $table) {
    $table->id();
    $table->string('title');
    $table->text('description')->nullable();
    $table->dateTime('start_time');
    $table->dateTime('end_time');
    $table->timestamps();
});

Run migration:

php artisan migrate

2. Add component to your Blade view

<livewire:meeting-calendar />

3. Publish views (optional)

php artisan vendor:publish --tag=meeting-calendar-views

License

MIT License

统计信息

  • 总下载量: 4
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: Blade

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-10-16