Build & Deploy / build (push) Successful in 18s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
12 lines
258 B
PHP
12 lines
258 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Streaks\Pages;
|
|
|
|
use App\Filament\Resources\Streaks\StreakResource;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateStreak extends CreateRecord
|
|
{
|
|
protected static string $resource = StreakResource::class;
|
|
}
|