HEX
Server: nginx/1.28.3
System: Linux lightweb-s1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
User: dawonefr-98 (1071)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/mocapict-106/mocapictures.kr/config/nova-grid-system.php
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Automatism stacked
    |--------------------------------------------------------------------------
    |
    | If true, the size macro put automatically the stacked field attritute to true
    |
    */
    'nova_grid_system_enabled' => true, //desactive

    'stacked_scope' => [ //if that's true, as soon as we use sizeX, it stacks the labels based on the scope
        'creating' => true,
        'detail' => false,
        'updating' => true,
    ],
    'size_scope' => [
        'creating' => true,
        'detail' => true,
        'updating' => true,
    ],
    'remove_bottom_border_scope' => [
        'creating' => true,
        'detail' => true,
        'updating' => true,
    ],
    'detail' => [
        'size' => true, //If true, size method works on Detail Page automatically. If false, you should tu use sizeOnDetails method
        'remove_bottom_border' => true, //If true, removeBottomBorder works on Detail Page
        'stacked' => true, //If true, stacks is automatic
    ],
    'creating' => [
        'size' => true,
        'remove_bottom_border' => true,
        'stacked' => true,
    ],
    'updating' => [
        'size' => true,
        'remove_bottom_border' => true,
        'stacked' => true,
    ],
    'default_size' => [
        'detail' => 'w-full',
        'creating' => 'w-full',
        'updating' => 'w-full',
    ]
];