Pint PHP Style Fixes

This commit is contained in:
refringe 2024-06-03 02:04:49 +00:00 committed by Pint Bot
parent 541eed2cab
commit 054c458b0f
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ use Laravel\Scout\Searchable;
*/
class Mod extends Model
{
use HasFactory, SoftDeletes, Searchable;
use HasFactory, Searchable, SoftDeletes;
protected $fillable = [
'user_id',

View File

@ -18,8 +18,8 @@ class User extends Authenticatable implements MustVerifyEmail
use HasFactory;
use HasProfilePhoto;
use Notifiable;
use TwoFactorAuthenticatable;
use Searchable;
use TwoFactorAuthenticatable;
protected $fillable = [
'name',

View File

@ -140,7 +140,7 @@ return [
Mod::class => [
'filterableAttributes' => ['featured'],
'sortableAttributes' => ['created_at', 'updated_at'],
]
],
],
],