Filament v4 🎉 (#1651)

Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com>
Co-authored-by: Boy132 <Boy132@users.noreply.github.com>
Co-authored-by: Lance Pioch <git@lance.sh>
This commit is contained in:
Charles
2025-09-08 13:12:33 -04:00
committed by GitHub
parent 32eb1abd4a
commit 1900c04b71
379 changed files with 5648 additions and 6671 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Models;
use Illuminate\Support\Carbon;
use App\Jobs\ProcessWebhook;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
@@ -19,9 +20,9 @@ use App\Enums\WebhookType;
* @property string $description
* @property string[] $events
* @property WebhookType|string|null $type
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property Carbon|null $deleted_at
* @property array<string, string>|null $headers
*/
class WebhookConfiguration extends Model