feat: implement tabbed interface with side-by-side markdown code editor and live preview for proposals

This commit is contained in:
Ümit Tunç
2026-05-25 07:26:26 +03:00
parent 8bf36c7d39
commit 3cd5ee9e99
4 changed files with 494 additions and 112 deletions
@@ -4,6 +4,7 @@ namespace App\Filament\Admin\Resources\Proposals\Pages;
use App\Filament\Admin\Resources\Proposals\ProposalResource;
use Filament\Resources\Pages\EditRecord;
use Filament\Support\Enums\Width;
class EditProposal extends EditRecord
{
@@ -13,4 +14,10 @@ class EditProposal extends EditRecord
{
return __('proposal.edit');
}
public function getMaxContentWidth(): Width | string | null
{
return Width::Full;
}
}