18 lines
571 B
PHP
18 lines
571 B
PHP
@extends('layouts.admin_layout')
|
|
@section('content')
|
|
@auth()
|
|
<div class="container mt-4">
|
|
<h2>позиция</h2>
|
|
<p>{{ $cost->position }}</p>
|
|
<h2>описание</h2>
|
|
<p>{{ $cost->description }}</p>
|
|
<h2>Форма обучения</h2>
|
|
<p>{{ $cost->educationForm->name }}</p>
|
|
<h2>Направление</h2>
|
|
<p>{{ $cost->direction->name }}</p>
|
|
<h2>Стоимость</h2>
|
|
<p>{{ $cost->cost }}</p>
|
|
</div>
|
|
@endauth
|
|
@endsection
|