forked from aslan/applicant-site
18 lines
686 B
PHP
18 lines
686 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/spetsialitet-magistratura-2022/",".content_info");
|
|
$content = $PageScrapper->normalizePath();
|
|
echo $content;
|
|
|
|
@endphp
|
|
|
|
</div>
|
|
</div>
|
|
@endsection
|