!lost
05/12/2023, 11:11 PMphp
Radios::make()
->name('background')
->label('Hintergrund')
->inline()
->required()
->options(
Options::make([
Option::make('#2B2E34', 'Primär'),
Option::make('#C7BAAC', 'Sekundär'),
Option::make('#1D1D1B', 'Tertiär'),
])
)
);
!lost
05/12/2023, 11:11 PMphp
$table->string('background', 10)->nullable();
!lost
05/12/2023, 11:11 PM!lost
05/12/2023, 11:11 PMifox
05/12/2023, 11:16 PM!lost
05/12/2023, 11:17 PM!lost
05/12/2023, 11:18 PM!lost
05/12/2023, 11:24 PM!lost
05/12/2023, 11:25 PMifox
05/15/2023, 10:31 AM!lost
05/15/2023, 1:52 PM!lost
05/15/2023, 1:52 PMifox
05/15/2023, 1:56 PM!lost
05/15/2023, 2:28 PMphp
Options::make([
Option::make('#2B2E34', 'Primär'),
Option::make('#C7BAAC', 'Sekundär'),
Option::make('#1D1D1B', 'Tertiär'),
])
after
php
Options::make([
Option::make('new-value-1', 'Primär'),
Option::make('#C7BAAC', 'Sekundär'),
Option::make('#1D1D1B', 'Tertiär'),
])
!lost
05/15/2023, 2:28 PM!lost
05/15/2023, 2:28 PM!lost
05/15/2023, 2:29 PM!lost
05/15/2023, 2:29 PMifox
05/15/2023, 2:31 PM!lost
05/17/2023, 9:36 AM