turkmentv/resources/views/orders.blade.php

44 lines
1.7 KiB
PHP
Raw Normal View History

2019-07-10 14:16:29 +00:00
@extends('account')
@section('breadcrumb')
{{ Breadcrumbs::render('orders') }}
@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))
2019-07-10 14:43:14 +00:00
<table class="table table-bordered">
<thead>
<tr>
<th>
{{__('Ady')}}
</th>
<th>{{__('Senesi')}}</th>
<th>{{__('Tölegi')}}</th>
<th>{{__('Statusy')}}</th>
</tr>
</thead>
<tbody>
2019-07-10 14:16:29 +00:00
@foreach($orders as $order)
2019-07-10 14:43:14 +00:00
<tr>
<td>{{$order->title}}</td>
<td>{{$order->created_at}}</td>
<td>{{$order->price}}</td>
2019-07-10 15:18:44 +00:00
<td><a href="{{route('order_status',$order->id)}}">{{$order->payed ? 'tölenen':'tölenmedik'}}</a></td>
2019-07-10 14:43:14 +00:00
</tr>
2019-07-10 14:16:29 +00:00
@endforeach
2019-07-10 14:43:14 +00:00
</tbody>
</table>
2019-07-10 14:16:29 +00:00
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
{{ $orders->links() }}
</div>
@endif
</div>
</div>
</div>
</div>
@endsection