forked from aslan/applicant-site
23 lines
724 B
PHP
23 lines
724 B
PHP
@extends('layouts.applicant-layout')
|
|
|
|
@section('content')
|
|
|
|
|
|
<div class=" fw-bolder fs-1 text-center py-5 lh-lg"> Олимпиады для школьников </div>
|
|
{{-- пофиксить!!!!--}}
|
|
<div class="container py-4 d-flex justify-content-center" style="padding-left: 150px;" >
|
|
|
|
<div class="col-10">
|
|
@php
|
|
use App\Services\PageScrapper;
|
|
$PageScrapper = new PageScrapper("https://mkgtu.ru/postuplenie/olimpiady-dlya-shkolnikov/",".content_info");
|
|
$content = $PageScrapper->printHTML();
|
|
$content = $PageScrapper->normalizePath();
|
|
echo $content;
|
|
|
|
@endphp
|
|
|
|
</div>
|
|
</div>
|
|
@endsection
|