forked from aslan/applicant-site
17 lines
656 B
PHP
17 lines
656 B
PHP
@extends('layouts.applicant-layout')
|
|
@section('content')
|
|
<div class=" fw-bolder fs-1 text-center py-5 lh-lg"> Для поступающих на обучение по программам ординатуры </div>
|
|
<div class="container pt-4 d-flex justify-content-center">
|
|
|
|
<div class="col-10">
|
|
@php
|
|
use App\Services\PageScrapper;
|
|
$PageScrapper = new PageScrapper("https://mkgtu.ru/postuplenie/priemnaya-kampaniya/ordinatura/",".content_info");
|
|
$content = $PageScrapper->normalizePath();
|
|
echo $content;
|
|
@endphp
|
|
|
|
</div>
|
|
</div>
|
|
@endsection
|