mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 20:20:41 -05:00
Pint PHP Style Fixes
This commit is contained in:
parent
541eed2cab
commit
054c458b0f
@ -17,7 +17,7 @@ use Laravel\Scout\Searchable;
|
||||
*/
|
||||
class Mod extends Model
|
||||
{
|
||||
use HasFactory, SoftDeletes, Searchable;
|
||||
use HasFactory, Searchable, SoftDeletes;
|
||||
|
||||
protected $fillable = [
|
||||
'user_id',
|
||||
|
@ -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',
|
||||
|
@ -138,9 +138,9 @@ return [
|
||||
'key' => env('MEILISEARCH_KEY'),
|
||||
'index-settings' => [
|
||||
Mod::class => [
|
||||
'filterableAttributes'=> ['featured'],
|
||||
'filterableAttributes' => ['featured'],
|
||||
'sortableAttributes' => ['created_at', 'updated_at'],
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user