@extends('layouts.app') @section('head') @endsection @section('content') @include('Gig::frontend.buyer.head')
{{--

{{__('Manage Orders')}}

--}}
@foreach($rows as $row) @endforeach
{{__('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")}}
{{$rows->appends(request()->query())->links()}}
@endsection