44 lines
2.0 KiB
PHP
44 lines
2.0 KiB
PHP
@extends('account')
|
|
@section('breadcrumb')
|
|
{{ Breadcrumbs::render('bought') }}
|
|
@endsection
|
|
@section('account_content')
|
|
<div class="for-padding">
|
|
<h2>@lang('content.bought')</h2>
|
|
<div class="platny-inner-tab">
|
|
|
|
<div class="tab-content">
|
|
<div class="row">
|
|
@if(!empty($orders))
|
|
@foreach($orders as $order)
|
|
<div class="col-lg-6 col-md-6 col-sm-6">
|
|
<a href="{{route('material',$order->material_id)}}">
|
|
<div class="video-poster" style="background-image: url('https://content.turkmentv.gov.tm/{{$order->material->banner_url?? "#"}}'); background-size: cover; background-position: center, center; height: 230px">
|
|
<span class="day-day"><i class="fa fa-download"></i> @lang('content.download')</span>
|
|
<span class="star-star">{{$order->updated_at}}</span>
|
|
<span class="min-min"><i class="fa fa-clock-o"></i> {{$order->material->duration??'#'}} <i style="font-size: 12px; font-style: normal; font-weight: normal">@lang('content.min')</i></span>
|
|
<img class="bg-gradient" src="https://content.turkmentv.gov.tm/static/img/tv-projects/shadow.png">
|
|
<img class="play-icon" src="https://content.turkmentv.gov.tm/static/img/tv-projects/play-btn.png">
|
|
|
|
|
|
</div>
|
|
</a>
|
|
<div class="video-title">
|
|
<a href="">
|
|
<h4>{{$order->title}}</h4>
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
@endforeach
|
|
|
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
|
{{ $orders->links() }}
|
|
</div>
|
|
@endif
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |