chore(article): run laravel pint

This commit is contained in:
Yoga Pangestu 2025-10-03 15:09:25 +07:00
parent 4224aecbbc
commit db35517288
3 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ public function columns(): array
Column::make('Status', 'status')
->format(
fn($value) => Blade::render('<flux:badge color="' . $value->color() . '">' . $value->label() . '</flux:badge>')
fn ($value) => Blade::render('<flux:badge color="'.$value->color().'">'.$value->label().'</flux:badge>')
)
->html(),

View File

@ -13,7 +13,7 @@
#[Title('Ubah Artikel')]
class Edit extends Component
{
use WithToast, WithUpdatedData, WithAuthorization;
use WithAuthorization, WithToast, WithUpdatedData;
public ArticleForm $form;

View File

@ -15,7 +15,7 @@
class Article extends Model implements HasMedia
{
use HasFactory, HasSlug, InteractsWithMedia, SoftDeletes, HashableId;
use HasFactory, HashableId, HasSlug, InteractsWithMedia, SoftDeletes;
protected $guarded = ['id'];