HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/ivs.kaunokolegija.lt/laravel/resources/views/admin/scientificTranslations/show.blade.php
@extends('layouts.admin')
@section('content')

<div class="card">
    <div class="card-header">
        {{ trans('global.show') }}
    </div>

    <div class="card-body">
        <div class="form-group">
            <div class="form-group">
                <a class="btn btn-default" href="{{ route('admin.scientific-translations.index') }}">
                    {{ trans('global.back_to_list') }}
                </a>
            </div>
            <table class="table table-bordered table-striped">
                <tbody>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.id') }}
                        </th>
                        <td>
                            {{ $scientificTranslation->id }}
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.scientist') }}
                        </th>
                        <td>
                            @foreach($scientificTranslation->scientists as $key => $scientist)
                                <span class="label label-info">{{ $scientist->name }}</span>
                            @endforeach
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.year') }}
                        </th>
                        <td>
                            {{ $scientificTranslation->year }}
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.science_area') }}
                        </th>
                        <td>
                            @foreach($scientificTranslation->science_areas as $key => $science_area)
                                <span class="label label-info">{{ $science_area->name }}</span>
                            @endforeach
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.science_direction') }}
                        </th>
                        <td>
                            @foreach($scientificTranslation->science_directions as $key => $science_direction)
                                <span class="label label-info">{{ $science_direction->name }}</span>
                            @endforeach
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.nature') }}
                        </th>
                        <td>
                            @foreach($scientificTranslation->natures as $key => $nature)
                                <span class="label label-info">{{ $nature->name }}</span>
                            @endforeach
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.title') }}
                        </th>
                        <td>
                            {{ $scientificTranslation->title }}
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.input_time') }}
                        </th>
                        <td>
                            {{ $scientificTranslation->input_time }}
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.authorship_field') }}
                        </th>
                        <td>
                            {{ $scientificTranslation->authorship_field }}
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.page_count') }}
                        </th>
                        <td>
                            {{ $scientificTranslation->page_count }}
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.publisher') }}
                        </th>
                        <td>
                            {{ $scientificTranslation->publisher->name ?? '' }}
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.isbn') }}
                        </th>
                        <td>
                            {{ $scientificTranslation->isbn }}
                        </td>
                    </tr>
                    <tr>
                        <th>
                            {{ trans('cruds.scientificTranslation.fields.doi') }}
                        </th>
                        <td>
                            {{ $scientificTranslation->doi }}
                        </td>
                    </tr>
                </tbody>
            </table>
            <div class="form-group">
                <a class="btn btn-default" href="{{ route('admin.scientific-translations.index') }}">
                    {{ trans('global.back_to_list') }}
                </a>
            </div>
        </div>
    </div>
</div>



@endsection