<?php

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

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

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

    /**
     * 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',
        'admission_no'               => 'Please enter admission no',
        'roll_no'                    => 'Please enter roll no',
        'father'                     => 'Please enter father',
        'mother'                     => 'Please enter mother',
        'fathers_mobile'             => 'Please enter fathers mobile',
        'mothers_mobile'             => 'Please enter mothers mobile',
        'blood_group'                => 'Please enter blood group',
        'location'                   => 'Please enter location',
        'gender'                     => 'Please select gender',
        'dob'                        => 'Please select dob',
        'mobile'                     => 'Please enter mobile',
        'phone'                      => 'Please enter phone',
        'api_token'                  => 'Please enter api token',
        'remember_token'             => 'Please enter remember token',
        'email_verified_at'          => 'Please select email verified at',
        'user_id'                    => 'Please enter user id',
        'user_type'                  => 'Please enter user type',
        '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',
        'status'                     => 'Please select status',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
        'team_id'                    => 'Please enter team id',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'college_id'                 => 'College id',
        'standard_id'                => 'Standard id',
        'name'                       => 'Name',
        'email'                      => 'Email',
        'password'                   => 'Password',
        'admission_no'               => 'Admission no',
        'roll_no'                    => 'Roll no',
        'father'                     => 'Father',
        'mother'                     => 'Mother',
        'fathers_mobile'             => 'Fathers mobile',
        'mothers_mobile'             => 'Mothers mobile',
        'blood_group'                => 'Blood group',
        'location'                   => 'Location',
        'gender'                     => 'Gender',
        'dob'                        => 'Dob',
        'mobile'                     => 'Mobile',
        'phone'                      => 'Phone',
        'api_token'                  => 'Api token',
        'remember_token'             => 'Remember token',
        'email_verified_at'          => 'Email verified at',
        'user_id'                    => 'User id',
        'user_type'                  => 'User type',
        'deleted_at'                 => 'Deleted at',
        'address'                    => 'Address',
        'street'                     => 'Street',
        'city'                       => 'City',
        'district'                   => 'District',
        'state'                      => 'State',
        'country'                    => 'Country',
        'photo'                      => 'Photo',
        'certificates'               => 'Certificates',
        'status'                     => 'Status',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
        'team_id'                    => 'Team id',
    ],

    
    ];