2019-05-13 11:40:38 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
@section('breadcrumb')
|
|
|
|
|
{{ Breadcrumbs::render('search') }}
|
|
|
|
|
@endsection
|
|
|
|
|
@section('content')
|
2021-05-21 10:55:02 +00:00
|
|
|
<div class="platny-wrapper col-lg-12 col-md-12 col-sm-12 col-xs-12" style="overflow-x:hidden!important">
|
2019-05-13 11:40:38 +00:00
|
|
|
@include('layouts.left_menu')
|
|
|
|
|
<div class="tab-content col-lg-9 col-md-9 col-sm-9 col-xs-12">
|
|
|
|
|
<div id="redak-tc" class="tab-pane fade active in" role="tabpanel">
|
2020-04-28 08:36:57 +00:00
|
|
|
<div class="for-padding">
|
2022-04-13 11:49:23 +00:00
|
|
|
<h2>{{ $key }} üçin gözleg netijesi!</h2>
|
2019-05-13 11:40:38 +00:00
|
|
|
<div class="platny-inner-tab">
|
|
|
|
|
<ul role="tablist" >
|
|
|
|
|
<li class="@if($sort == 'new')active @endif">
|
2019-05-29 23:51:38 +00:00
|
|
|
<a href="{{route('search',["key={$key}",'sort=new'])}}" >@lang('content.sort_new')</a>
|
2019-05-13 11:40:38 +00:00
|
|
|
</li>
|
|
|
|
|
<li class="@if($sort == 'old')active @endif">
|
2019-05-29 23:51:38 +00:00
|
|
|
<a href="{{route('search',["key={$key}",'sort=old'])}}" >@lang('content.sort_old')</a>
|
2019-05-13 11:40:38 +00:00
|
|
|
</li>
|
|
|
|
|
<li class="@if($sort == 'like')active @endif">
|
2019-05-29 23:51:38 +00:00
|
|
|
<a href="{{route('search',["key={$key}",'sort=like'])}}">@lang('content.liked')</a>
|
2019-05-13 11:40:38 +00:00
|
|
|
</li>
|
|
|
|
|
<li class="@if($sort == 'view')active @endif" >
|
2019-05-29 23:51:38 +00:00
|
|
|
<a href="{{route('search',["key={$key}",'sort=view'])}}">@lang('content.watched')</a>
|
2019-05-13 11:40:38 +00:00
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<div class="tab-content">
|
|
|
|
|
<div id="sere-tc-no" class="tab-pane fade active in container" role="tabpanel">
|
|
|
|
|
<div class="row">
|
|
|
|
|
@foreach($materials as $material)
|
|
|
|
|
@include('partials.material_list_item')
|
|
|
|
|
@endforeach
|
|
|
|
|
@if(!empty($materials))
|
|
|
|
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
|
|
|
|
{{ $materials->appends(['sort' => $sort])->links() }}
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="container kesde" style="width: 100%; margin-top: 50px">
|
2021-10-20 21:24:19 +00:00
|
|
|
<a href=""><img src="https://content.turkmentv.gov.tm/static/img/okuz.jpg" alt="" style="width: 100%"></a>
|
2019-05-13 11:40:38 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
@endsection
|