@extends('layouts.user') @section('head') @endsection @section('content')

{{__("Manage Orders")}}

{{ __("Ready to jump back in?") }}

{{__("Manage Orders")}}

@if($rows && count($rows) > 0) @foreach($rows as $row) @endforeach @else @endif
{{__('Title')}} {{__('Created')}} {{__("Price")}} {{__("Status")}} {{__('Action')}}
@if(!empty($row->gig->image_id)) {!! get_image_tag($row->gig->image_id,'full',['alt'=>$row->gig->title,'class'=>'gig-img img-fluid lazy loaded']) !!} @endif {{$row->gig->title ?? ''}} {{display_date($row->created_at)}} {{format_money($row->price)}} {{$row->status_text}} {{__("View")}}
{{ __("No Items") }}
{{$rows->appends(request()->query())->links()}}
@endsection