forked from aslan/applicant-site
34 lines
923 B
PHP
34 lines
923 B
PHP
|
@php
|
|||
|
use App\Models\Subject;
|
|||
|
use App\Models\EducationForm;
|
|||
|
@endphp
|
|||
|
@extends('layouts.new-design-layout')
|
|||
|
@section('content')
|
|||
|
|
|||
|
<style>
|
|||
|
.fon2_blok {
|
|||
|
background-image: url({{ URL::to('img/front-page/bakalavr-special/fon2_blok.png') }}); background-repeat: no-repeat; background-attachment: fixed;
|
|||
|
}
|
|||
|
</style>
|
|||
|
<div class="fon2_blok">
|
|||
|
<div class="container">
|
|||
|
<div class="row">
|
|||
|
<div class="col">
|
|||
|
{{-- <h1>{{$direction->name}} {{$direction->code}} </h1>--}}
|
|||
|
<br>
|
|||
|
<h3>Уроdень образования:
|
|||
|
{{-- @if($direction->education_level_id = 1)--}}
|
|||
|
|
|||
|
{{-- @elseif--}}
|
|||
|
|
|||
|
{{-- @endif--}}
|
|||
|
</h3>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
@dd($direction)
|
|||
|
|
|||
|
@endsection
|