Custom Models
The content models are swappable:
calendarcalendar_instancecalendar_objectcalendar_attachmentcalendar_subscriptioncalendar_proxy_membershipaddress_bookcardcredentialscheduling_object
To customize one, subclass the package model and point the matching config key at your subclass.
namespace App\Models;
use Bambamboole\LaravelDav\Models\DavCalendar;
class TeamCalendar extends DavCalendar{ protected function casts(): array { return [...parent::casts(), 'settings' => 'array']; }}'models' => [ 'calendar' => \App\Models\TeamCalendar::class,],Keep the package table name and add extra columns with a normal migration against that table.
The override must extend the package model it replaces. The resolver throws when the configured class does not match the required base model.