<?php

return [
/*
* Provider .
*/
'provider'  => 'lavalite',

/*
* Package .
*/
'package'   => 'johnymap',

/*
* Modules .
*/
'modules'   => ['city'],

'city' => [
                    'Name'          => 'City',
                    'name'          => 'city',
                    'table'         => 'cities',
                    'model'         => 'Lavalite\Johnymap\Models\City',
                    'image'         => [
                        'xs'        => ['width' => '60',         'height' => '45'],
                        'sm'        => ['width' => '100',        'height' => '75'],
                        'md'        => ['width' => '460',        'height' => '345'],
                        'lg'        => ['width' => '800',        'height' => '600'],
                        'xl'        => ['width' => '1000',       'height' => '750'],
                        ],

                    'fillable'          => ['user_id', 'name'],
                    'listfields'        => ['id', 'name'],
                    'translatable'      => ['name'],

                    'upload-folder'     => '/uploads/johnymap/city',
                    'uploadable'        => [
                                                'single'    => [],
                                                'multiple'  => [],
                                            ],
                ],
];