@extends('layouts.admin') @section('content') @can('abstract_create')
@endcan{{ trans('cruds.abstract.fields.id') }} | {{ trans('cruds.abstract.fields.submitter_name') }} | {{ trans('cruds.abstract.fields.submitter_designation') }} | {{ trans('cruds.abstract.fields.submitter_email_address') }} | {{ trans('cruds.abstract.fields.first_author_title') }} | {{ trans('cruds.abstract.fields.first_author_fiirst_name') }} | {{ trans('cruds.abstract.fields.first_author_last_name') }} | {{ trans('cruds.abstract.fields.first_author_gender') }} | {{ trans('cruds.abstract.fields.first_author_country') }} | {{ trans('cruds.abstract.fields.first_author_email') }} | {{ trans('cruds.abstract.fields.first_author_category') }} | {{ trans('cruds.abstract.fields.first_author_other_category') }} | {{ trans('cruds.abstract.fields.forst_author_alumni_completion') }} | {{ trans('cruds.abstract.fields.first_author_fetp_level') }} | {{ trans('cruds.abstract.fields.abstract_sub_theme') }} | {{ trans('cruds.abstract.fields.co_authors') }} | {{ trans('cruds.abstract.fields.reviewer_1') }} | {{ trans('cruds.abstract.fields.reviewer_1_background_study') }} | {{ trans('cruds.abstract.fields.reviewer_1_method_apporpriate') }} | {{ trans('cruds.abstract.fields.reviewer_1_results_presentable') }} | {{ trans('cruds.abstract.fields.reviewer_1_results_conclusion') }} | {{ trans('cruds.abstract.fields.reviewer_1_ph_signicance') }} | {{ trans('cruds.abstract.fields.reviewer_1_overall_clarity') }} | {{ trans('cruds.abstract.fields.reviewer_1_total') }} | {{ trans('cruds.abstract.fields.reviewer_1_complete') }} | {{ trans('cruds.abstract.fields.reviewer_2') }} | {{ trans('cruds.abstract.fields.reviewer_2_background_study') }} | {{ trans('cruds.abstract.fields.reviewer_2_method_apporpriate') }} | {{ trans('cruds.abstract.fields.reviewer_2_results_presentable') }} | {{ trans('cruds.abstract.fields.reviewer_2_results_conclusion') }} | {{ trans('cruds.abstract.fields.reviewer_2_ph_significance') }} | {{ trans('cruds.abstract.fields.reviewer_2_overall_clarity') }} | {{ trans('cruds.abstract.fields.reviewer_2_complete') }} | ||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $abstract->id ?? '' }} | {{ $abstract->submitter_name ?? '' }} | {{ $abstract->submitter_designation ?? '' }} | {{ $abstract->submitter_email_address ?? '' }} | {{ $abstract->first_author_title ?? '' }} | {{ $abstract->first_author_fiirst_name ?? '' }} | {{ $abstract->first_author_last_name ?? '' }} | {{ App\Models\Abstract::FIRST_AUTHOR_GENDER_SELECT[$abstract->first_author_gender] ?? '' }} | {{ $abstract->first_author_country ?? '' }} | {{ $abstract->first_author_email ?? '' }} | {{ $abstract->first_author_category ?? '' }} | {{ $abstract->first_author_other_category ?? '' }} | {{ $abstract->forst_author_alumni_completion ?? '' }} | {{ $abstract->first_author_fetp_level ?? '' }} | {{ $abstract->abstract_sub_theme ?? '' }} | {{ $abstract->co_authors ?? '' }} | {{ $abstract->reviewer_1->name ?? '' }} | {{ App\Models\Abstract::REVIEWER_1_BACKGROUND_STUDY_SELECT[$abstract->reviewer_1_background_study] ?? '' }} | {{ App\Models\Abstract::REVIEWER_1_METHOD_APPORPRIATE_SELECT[$abstract->reviewer_1_method_apporpriate] ?? '' }} | {{ App\Models\Abstract::REVIEWER_1_RESULTS_PRESENTABLE_SELECT[$abstract->reviewer_1_results_presentable] ?? '' }} | {{ App\Models\Abstract::REVIEWER_1_RESULTS_CONCLUSION_SELECT[$abstract->reviewer_1_results_conclusion] ?? '' }} | {{ App\Models\Abstract::REVIEWER_1_PH_SIGNICANCE_SELECT[$abstract->reviewer_1_ph_signicance] ?? '' }} | {{ App\Models\Abstract::REVIEWER_1_OVERALL_CLARITY_SELECT[$abstract->reviewer_1_overall_clarity] ?? '' }} | {{ $abstract->reviewer_1_total ?? '' }} | {{ $abstract->reviewer_1_complete ?? '' }} | {{ $abstract->reviewer_2->name ?? '' }} | {{ App\Models\Abstract::REVIEWER_2_BACKGROUND_STUDY_SELECT[$abstract->reviewer_2_background_study] ?? '' }} | {{ App\Models\Abstract::REVIEWER_2_METHOD_APPORPRIATE_SELECT[$abstract->reviewer_2_method_apporpriate] ?? '' }} | {{ App\Models\Abstract::REVIEWER_2_RESULTS_PRESENTABLE_SELECT[$abstract->reviewer_2_results_presentable] ?? '' }} | {{ App\Models\Abstract::REVIEWER_2_RESULTS_CONCLUSION_SELECT[$abstract->reviewer_2_results_conclusion] ?? '' }} | {{ App\Models\Abstract::REVIEWER_2_PH_SIGNIFICANCE_SELECT[$abstract->reviewer_2_ph_significance] ?? '' }} | {{ App\Models\Abstract::REVIEWER_2_OVERALL_CLARITY_SELECT[$abstract->reviewer_2_overall_clarity] ?? '' }} | {{ $abstract->reviewer_2_complete ?? '' }} | @can('abstract_show') {{ trans('global.view') }} @endcan @can('abstract_edit') {{ trans('global.edit') }} @endcan @can('abstract_delete') @endcan |