export const usersData = {
    data: [
        {
            id: 1,
            uid: 'US-950045',
            name: 'Admin Test',
            email: 'admin@example.com',
            phone: '531-724-0899',
            avatar: 'https://via.placeholder.com/200x200.png/0099bb?text=people+User+velit',
            status: 'ACTIVE',
            role: ['super admin'],
            created_at: '13 Oct, 2025',
            updated_at: '13 Oct, 2025',
        },
    ],
    links: {
        first: 'http://127.0.0.1:8000/users?page=1',
        last: 'http://127.0.0.1:8000/users?page=1',
        prev: null,
        next: null,
    },
    meta: {
        current_page: 1,
        from: 1,
        last_page: 1,
        links: [
            {
                url: null,
                label: '&laquo; Previous',
                page: null,
                active: false,
            },
            {
                url: 'http://127.0.0.1:8000/users?page=1',
                label: '1',
                page: 1,
                active: true,
            },
            {
                url: null,
                label: 'Next &raquo;',
                page: null,
                active: false,
            },
        ],
        path: 'http://127.0.0.1:8000/users',
        per_page: 10,
        to: 6,
        total: 6,
    },
    queryParams: {
        search: null,
        per_page: 10,
        page: 1,
        status: null,
        role: null,
        created_at_start: null,
        created_at_end: null,
        sort_by: null,
        sort_dir: null,
    },
    userSummary: [
        {
            title: 'Active Users',
            value: 6,
            description: 'Total number of active users',
        },
        {
            title: 'Inactive Users',
            value: 0,
            description: 'Total number of inactive users',
        },
        {
            title: 'Invited Users',
            value: 0,
            description: 'Total number of invited users',
        },
        {
            title: 'Deleted Users',
            value: 0,
            description: 'Total number of soft-deleted users',
        },
    ],
};

export const roles = [
    {
        id: 1,
        name: 'Super Admin',
        slug: 'super-admin',
        can_edit: 0,
        can_delete: 0,
        access_level: null,
        guard_name: 'web',
        created_at: '2025-10-13T04:16:53.000000Z',
        updated_at: '2025-10-13T04:16:53.000000Z',
    },
    {
        id: 2,
        name: 'User',
        slug: 'user',
        can_edit: 1,
        can_delete: 1,
        access_level: null,
        guard_name: 'web',
        created_at: '2025-10-13T04:16:53.000000Z',
        updated_at: '2025-10-13T04:16:53.000000Z',
    },
];

export const formValue = {
    name: 'John Doe',
    slug: 'john-doe',
};
