mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30: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
|
class Mod extends Model
|
||||||
{
|
{
|
||||||
use HasFactory, SoftDeletes, Searchable;
|
use HasFactory, Searchable, SoftDeletes;
|
||||||
|
|
||||||
protected $fillable = [
|
protected $fillable = [
|
||||||
'user_id',
|
'user_id',
|
||||||
|
@ -18,8 +18,8 @@ class User extends Authenticatable implements MustVerifyEmail
|
|||||||
use HasFactory;
|
use HasFactory;
|
||||||
use HasProfilePhoto;
|
use HasProfilePhoto;
|
||||||
use Notifiable;
|
use Notifiable;
|
||||||
use TwoFactorAuthenticatable;
|
|
||||||
use Searchable;
|
use Searchable;
|
||||||
|
use TwoFactorAuthenticatable;
|
||||||
|
|
||||||
protected $fillable = [
|
protected $fillable = [
|
||||||
'name',
|
'name',
|
||||||
|
@ -138,9 +138,9 @@ return [
|
|||||||
'key' => env('MEILISEARCH_KEY'),
|
'key' => env('MEILISEARCH_KEY'),
|
||||||
'index-settings' => [
|
'index-settings' => [
|
||||||
Mod::class => [
|
Mod::class => [
|
||||||
'filterableAttributes'=> ['featured'],
|
'filterableAttributes' => ['featured'],
|
||||||
'sortableAttributes' => ['created_at', 'updated_at'],
|
'sortableAttributes' => ['created_at', 'updated_at'],
|
||||||
]
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user