mirror of
https://github.com/anna-sara/vbytes_lan.git
synced 2026-03-16 16:25:41 +01:00
Small fix with tables
This commit is contained in:
parent
8034ae90bf
commit
8c8b51cb33
3 changed files with 4 additions and 3 deletions
|
|
@ -42,7 +42,7 @@ class ParticipantsTable
|
|||
->exporter(ParticipantExporter::class),
|
||||
])
|
||||
->columns([
|
||||
TextColumn::make('lan_id')
|
||||
TextInputColumn::make('lan_id')
|
||||
->label('ID')
|
||||
->searchable()
|
||||
->sortable(),
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ use Filament\Forms\Components\Select;
|
|||
use Illuminate\Support\Facades\Mail;
|
||||
use App\Mail\LanMail;
|
||||
use Filament\Support\Icons\Heroicon;
|
||||
use Filament\Tables\Columns\TextInputColumn;
|
||||
use App\Models\Volunteer;
|
||||
use App\Models\Mailtemplate;
|
||||
|
||||
|
|
@ -23,7 +24,7 @@ class VolunteersTable
|
|||
return $table
|
||||
->recordAction(null)
|
||||
->columns([
|
||||
TextColumn::make('lan_id')
|
||||
TextInputColumn::make('lan_id')
|
||||
->label('ID')
|
||||
->searchable()
|
||||
->sortable(),
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div>
|
||||
<h1>{{$title}}</h1>
|
||||
<p>{{$type}} {{$name}}</p>
|
||||
<p>{{$type}} {{$name}}!</p>
|
||||
<div>{!! str($content)->markdown()->sanitizeHtml() !!}</div>
|
||||
<div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue