<?php

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

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

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

    /**
     * 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'       => [
        'gender' => 
            [
                                
                [
                    'key'    => 'Male',
                    'value'  => 'Male',
                    'text'   => 'Male',
                ],
                                
                [
                    'key'    => 'Female',
                    'value'  => 'Female',
                    'text'   => 'Female',
                ],
                                
            ],

        'status' => 
            [
                                
                [
                    'key'    => 'New',
                    'value'  => 'New',
                    'text'   => 'New',
                ],
                                
                [
                    'key'    => 'Active',
                    'value'  => 'Active',
                    'text'   => 'Active',
                ],
                                
                [
                    'key'    => 'Suspended',
                    'value'  => 'Suspended',
                    'text'   => 'Suspended',
                ],
                                
                [
                    'key'    => 'Locked',
                    'value'  => 'Locked',
                    'text'   => 'Locked',
                ],
                                
            ],
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'college_id'                 => 'Please enter college id',
        'standard_id'                => 'Please enter standard id',
        'name'                       => 'Please enter name',
        'email'                      => 'Please enter email',
        'password'                   => 'Please enter password',
        'location'                   => 'Please enter location',
        'gender'                     => 'Please select gender',
        'dob'                        => 'Please select dob',
        'doj'                        => 'Please select doj',
        'mobile'                     => 'Please enter mobile',
        'phone'                      => 'Please enter phone',
        'api_token'                  => 'Please enter api token',
        'email_verified_at'          => 'Please select email verified at',
        'status'                     => 'Please select status',
        'user_type'                  => 'Please enter user type',
        'user_id'                    => 'Please enter user id',
        'deleted_at'                 => 'Please select deleted at',
        'address'                    => 'Please enter address',
        'street'                     => 'Please enter street',
        'city'                       => 'Please enter city',
        'district'                   => 'Please enter district',
        'state'                      => 'Please enter state',
        'country'                    => 'Please enter country',
        'photo'                      => 'Please enter photo',
        'certificates'               => 'Please enter certificates',
        'experience'                 => 'Please enter experience',
        'remember_token'             => 'Please enter remember token',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'college_id'                 => 'College id',
        'standard_id'                => 'Standard id',
        'name'                       => 'Name',
        'email'                      => 'Email',
        'password'                   => 'Password',
        'location'                   => 'Location',
        'gender'                     => 'Gender',
        'dob'                        => 'Dob',
        'doj'                        => 'Doj',
        'mobile'                     => 'Mobile',
        'phone'                      => 'Phone',
        'api_token'                  => 'Api token',
        'email_verified_at'          => 'Email verified at',
        'status'                     => 'Status',
        'user_type'                  => 'User type',
        'user_id'                    => 'User id',
        'deleted_at'                 => 'Deleted at',
        'address'                    => 'Address',
        'street'                     => 'Street',
        'city'                       => 'City',
        'district'                   => 'District',
        'state'                      => 'State',
        'country'                    => 'Country',
        'photo'                      => 'Photo',
        'certificates'               => 'Certificates',
        'experience'                 => 'Experience',
        'remember_token'             => 'Remember token',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
    ],

    
    ];