mobile search
This commit is contained in:
parent
83b2788130
commit
866621c5fb
|
|
@ -139,6 +139,7 @@ return [
|
|||
'subscribe_success_message' => 'Subscription successfully',
|
||||
'subscribe_error_message' => 'Subscription unsuccessful',
|
||||
'search_result' => 'Search results for',
|
||||
'search_showing' => 'Displayed on page',
|
||||
'currency_code' => ' manat.',
|
||||
'booking_fee_text' => 'Booking fee per ticket:',
|
||||
'checkout_fail_title' => 'Sorry',
|
||||
|
|
|
|||
|
|
@ -161,4 +161,5 @@ return [
|
|||
'category' => 'Категория',
|
||||
'redirect_payment_message' =>'Переход на страницу оплаты',
|
||||
'search_result' => 'Результат поиска по',
|
||||
'search_showing' => 'Видно на странице',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -166,4 +166,5 @@ sargydyňyz Bank tarapyndan ýatyrylandyr. Biletleri täzeden satyn almaga synan
|
|||
'category' => 'Kategoriýasy',
|
||||
'redirect_payment_message' =>'Töleg sahypasyna geçilýär',
|
||||
'search_result' => 'Gözleg netijesi:',
|
||||
'search_showing' => 'Sahypada görkezileni',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -5,19 +5,11 @@
|
|||
<div class="row kinoteator tab-part">
|
||||
<div class="tab-header d-flex justify-content-between col-12">
|
||||
<h4>@lang('ClientSide.search_result') {{$query}}</h4>
|
||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 0px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
</div>
|
||||
<div class="tab-ozi col-12">
|
||||
<!-- Nav tabs -->
|
||||
<ul class="nav u-nav-v1-1 g-mb-20">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" data-toggle="tab" role="tab">{{__("ClientSide.results")}}: {{$events->count()}}/{{$events->total()}}</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div style="height: 5px; position: absolute; bottom: 0px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
</div>
|
||||
</div>
|
||||
@foreach($events as $event)
|
||||
<div class="row mb-4" onclick="window.location.href = '{{$event->event_url}}';">
|
||||
<div class="row mt-4" onclick="window.location.href = '{{$event->event_url}}';">
|
||||
<div class="col-4 pr-0">
|
||||
<img class="w-100 img-responsive" src="{{asset($event->images->first()->image_path ?? '#')}}" alt="{{$event->title}}"/>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="pagination_blk">
|
||||
<span>Видно на странице - {{$paginator->count()}}/{{$paginator->total()}}</span>
|
||||
<span>@lang('ClientSide.search_showing') - {{$paginator->count()}}/{{$paginator->total()}}</span>
|
||||
@if ($paginator->hasPages())
|
||||
<ul class="pagination" role="navigation">
|
||||
{{-- Previous Page Link --}}
|
||||
|
|
|
|||
Loading…
Reference in New Issue