Skip to content

Commit

Permalink
Merge pull request #5 from lara-zeus/analysis-QM6ge3
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
atmonshi authored Feb 10, 2022
2 parents 974d25e + 2b2af77 commit 9806ab4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Filament/Resources/DepartmentResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public static function form(Form $form): Form
->maxLength(65535)
->columnSpan(['sm' => 2]),
FileUpload::make('logo')
->disk(config('zeus-wind.uploads.disk','public'))
->directory(config('zeus-wind.uploads.dir','logos'))
->disk(config('zeus-wind.uploads.disk', 'public'))
->directory(config('zeus-wind.uploads.dir', 'logos'))
->columnSpan(['sm' => 2]),
]);
}
Expand All @@ -65,7 +65,7 @@ public static function table(Table $table): Table
Tables\Columns\TextColumn::make('desc'),
Tables\Columns\TextColumn::make('ordering')->sortable(),
Tables\Columns\BooleanColumn::make('is_active')->sortable(),
ImageColumn::make('logo')->disk(config('zeus-wind.uploads.disk','public')),
ImageColumn::make('logo')->disk(config('zeus-wind.uploads.disk', 'public')),
])
->defaultSort('id', 'desc');
}
Expand Down

0 comments on commit 9806ab4

Please sign in to comment.