Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi committed Feb 5, 2024
1 parent 82040fc commit 7a7eead
Show file tree
Hide file tree
Showing 17 changed files with 84,515 additions and 1,569 deletions.
48 changes: 48 additions & 0 deletions app/Filament/Pages/Embed.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php

namespace App\Filament\Pages;

use App\Filament\Clusters\ComponentsDemo;
use Filament\Forms\Components\View;
use Filament\Pages\Page;
use Filament\Actions\Action;

class Embed extends Page
{
protected static ?string $cluster = ComponentsDemo::class;

protected static ?string $navigationIcon = 'tabler-chart-donut-4';

protected static string $view = 'filament.pages.embed';

protected static ?int $navigationSort = 7;

public array $data;

public string $qrcode;

public function openAction(): Action
{
return Action::make('open')
->label('create a ticket')
->icon('tabler-chart-donut-4')
->modalSubmitAction(false)
->modalCancelAction(false)
->form([
View::make('bolt')
->columnSpanFull()
->view('filament.pages.bolt')
])
->action(fn()=>dd('ya we heard that issue a million time'));
}

public static function getNavigationLabel(): string
{
return 'Embed Bolt';
}

public function getTitle(): string
{
return 'Embed Bolt with Thunder';
}
}
10,766 changes: 10,759 additions & 7 deletions public/css/another-portfolio.css

Large diffs are not rendered by default.

9,265 changes: 9,259 additions & 6 deletions public/css/app.css

Large diffs are not rendered by default.

12,449 changes: 12,443 additions & 6 deletions public/css/daisy.css

Large diffs are not rendered by default.

20,075 changes: 20,068 additions & 7 deletions public/css/filament-guests.css

Large diffs are not rendered by default.

29,346 changes: 29,338 additions & 8 deletions public/css/filament-zeus.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/css/filament/filament/app.css

Large diffs are not rendered by default.

Loading

0 comments on commit 7a7eead

Please sign in to comment.