<?php

return [
    /*
    |--------------------------------------------------------------------------
    | Language files for blog in blog package
    |--------------------------------------------------------------------------
    |
    | The following language lines are  for  blog module in blog package
    | and it is used by the template/view files in this module
    |
    */

    /**
     * Singlular and plural name of the module
     */
    'name' => 'Blog',
    'names' => 'Blogs',
    'icon' => 'las la-list',

    /**
     * Singlular and plural name of the module
     */
    'title' => [
        'main' => 'Blogs',
        'sub' => 'Blogs'
    ],

    /**
     * Singlular and plural name of the module
     */
    'groups'         => [
        'main' => 'Main',
        'images' => 'Images',
        'details' => 'Details',
        'settings' => 'Settings'
    ],

    /**
     * Form sub section name for the module.
     */
    'sections' => [
        'main' => 'Main',
        'details' => 'Details',
    ],

    /**
     * Options for select/radio/check.
     */
    'options'       => [
        'status' => 
            [
                                
                [
                    'key'    => 'Yes',
                    'value'  => 'Yes',
                    'text'   => 'Yes',
                ],
                                
                [
                    'key'    =>  'No',
                    'value'  =>  'No',
                    'text'   =>  'No',
                ],
                                
            ],
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'title'                      => 'title',
        'category_id'                => 'category',
        'description'                => 'description',
        'user_id'                    => 'user',
        'images'                     => 'imaages',
        'status'                     => 'status',
        'slug'                       => '',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'title'                      => 'Title',
        'category_id'                => 'Category',
        'description'                => 'Description',
        'user_id'                    => 'User',
        'images'                     => 'Images',
        'status'                     => 'Status',
        'slug'                       => '',
    ],

    
    ];