@extends('layouts.app')
@section('head')
@endsection
@section('content')
{{__("Manage Orders")}}
| {{__('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")}} |