czemu / nova-calendar-tool

A Laravel Nova tool to display a calendar with event management.
MIT License
31 stars 29 forks source link

Custom Model #7

Closed keizah7 closed 3 years ago

keizah7 commented 3 years ago

How we can use your calendar with custom model?

czemu commented 3 years ago

You can extend your model:

<?php

namespace App\Models;

class YourModel extends \Czemu\NovaCalendarTool\Models\Event
{
    //
}

Then you can overwrite whatever you need.