<?php

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

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

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

    /**
     * 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'       => [
        'direction' => 
            [
                                
                [
                    'key'    => 'IN',
                    'value'  => 'IN',
                    'text'   => 'IN',
                ],
                                
                [
                    'key'    => 'OUT',
                    'value'  => 'OUT',
                    'text'   => 'OUT',
                ],
                                
            ],
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'user_id'                    => 'Please enter user id',
        'agent_phone'                => 'Please enter agent phone',
        'client_phone'               => 'Please enter client phone',
        'client_name'                => 'Please enter client name',
        'chanel'                     => 'Please enter chanel',
        'direction'                  => 'Please select direction',
        'type'                       => 'Please enter type',
        'message'                    => 'Please enter message',
        'media'                      => 'Please enter media',
        'opp_id'                     => 'Please enter opp id',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'user_id'                    => 'User id',
        'agent_phone'                => 'Agent phone',
        'client_phone'               => 'Client phone',
        'client_name'                => 'Client name',
        'chanel'                     => 'Chanel',
        'direction'                  => 'Direction',
        'type'                       => 'Type',
        'message'                    => 'Message',
        'media'                      => 'Media',
        'opp_id'                     => 'Opp id',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
    ],

    
    ];