@extends('layouts.admin') @section('content') @can('trainee_info_create')
@endcan{{ trans('cruds.traineeInfo.fields.email') }} | {{ trans('cruds.traineeInfo.fields.name_english') }} | {{ trans('cruds.traineeInfo.fields.designation') }} | {{ trans('cruds.traineeInfo.fields.other_designation') }} | {{ trans('cruds.traineeInfo.fields.organization') }} | {{ trans('cruds.traineeInfo.fields.mobile_no') }} | {{ trans('cruds.traineeInfo.fields.gmail_address') }} | {{ trans('cruds.traineeInfo.fields.other_email_address') }} | {{ trans('cruds.traineeInfo.fields.work_division') }} | {{ trans('cruds.traineeInfo.fields.office_name') }} | {{ trans('cruds.traineeInfo.fields.office_address') }} | {{ trans('cruds.traineeInfo.fields.organization_id_no') }} | {{ trans('cruds.traineeInfo.fields.entry_post') }} | {{ trans('cruds.traineeInfo.fields.present_job_description') }} | {{ trans('cruds.traineeInfo.fields.bank_account_name') }} | {{ trans('cruds.traineeInfo.fields.bank_name') }} | {{ trans('cruds.traineeInfo.fields.branch_name') }} | {{ trans('cruds.traineeInfo.fields.bank_account_no') }} | {{ trans('cruds.traineeInfo.fields.mobile_banking') }} | {{ trans('cruds.traineeInfo.fields.mobile_banking_no') }} | {{ trans('cruds.traineeInfo.fields.name_bangla') }} | {{ trans('cruds.traineeInfo.fields.fathers_name') }} | {{ trans('cruds.traineeInfo.fields.mothers_name') }} | {{ trans('cruds.traineeInfo.fields.national_id_no') }} | {{ trans('cruds.traineeInfo.fields.present_address') }} | {{ trans('cruds.traineeInfo.fields.home_district') }} | {{ trans('cruds.traineeInfo.fields.permanent_address') }} | {{ trans('cruds.traineeInfo.fields.religion') }} | {{ trans('cruds.traineeInfo.fields.fields_of_interest') }} | {{ trans('cruds.traineeInfo.fields.innovative_idea') }} | {{ trans('cruds.traineeInfo.fields.additional_comment') }} | {{ trans('cruds.traineeInfo.fields.bpmi_bus_arrangements') }} | {{ trans('cruds.traineeInfo.fields.other_method_to_go_to_payra') }} | {{ trans('cruds.traineeInfo.fields.user') }} | ||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $traineeInfo->email ?? '' }} | {{ $traineeInfo->name_english ?? '' }} | {{ App\Models\TraineeInfo::DESIGNATION_SELECT[$traineeInfo->designation] ?? '' }} | {{ $traineeInfo->other_designation ?? '' }} | {{ $traineeInfo->organization->name ?? '' }} | {{ $traineeInfo->mobile_no ?? '' }} | {{ $traineeInfo->gmail_address ?? '' }} | {{ $traineeInfo->other_email_address ?? '' }} | {{ $traineeInfo->work_division ?? '' }} | {{ $traineeInfo->office_name ?? '' }} | {{ $traineeInfo->office_address ?? '' }} | {{ $traineeInfo->organization_id_no ?? '' }} | {{ $traineeInfo->entry_post ?? '' }} | {{ $traineeInfo->present_job_description ?? '' }} | {{ $traineeInfo->bank_account_name ?? '' }} | {{ $traineeInfo->bank_name ?? '' }} | {{ $traineeInfo->branch_name ?? '' }} | {{ $traineeInfo->bank_account_no ?? '' }} | {{ App\Models\TraineeInfo::MOBILE_BANKING_SELECT[$traineeInfo->mobile_banking] ?? '' }} | {{ $traineeInfo->mobile_banking_no ?? '' }} | {{ $traineeInfo->name_bangla ?? '' }} | {{ $traineeInfo->fathers_name ?? '' }} | {{ $traineeInfo->mothers_name ?? '' }} | {{ $traineeInfo->national_id_no ?? '' }} | {{ $traineeInfo->present_address ?? '' }} | {{ $traineeInfo->home_district ?? '' }} | {{ $traineeInfo->permanent_address ?? '' }} | {{ App\Models\TraineeInfo::RELIGION_SELECT[$traineeInfo->religion] ?? '' }} | {{ $traineeInfo->fields_of_interest ?? '' }} | {{ $traineeInfo->innovative_idea ?? '' }} | {{ $traineeInfo->additional_comment ?? '' }} | {{ App\Models\TraineeInfo::BPMI_BUS_ARRANGEMENTS_SELECT[$traineeInfo->bpmi_bus_arrangements] ?? '' }} | {{ $traineeInfo->other_method_to_go_to_payra ?? '' }} | {{ $traineeInfo->user->name ?? '' }} | @can('trainee_info_show') {{ trans('global.view') }} @endcan @can('trainee_info_edit') {{ trans('global.edit') }} @endcan @can('trainee_info_delete') @endcan |