@extends('layouts.app') @section('content')
Property | Value | |||
---|---|---|---|---|
From Organizer | {{ $offer->event->organizer->user->name }} | |||
To Artist | {{ $offer->artist->user->name }} | |||
For Event | {{ $offer->event->title }} | |||
Current Offer Status | @if($offer->status === \App\Enum\OfferStatus::IN_PROGRESS->value)In Progress |
@elseif($offer->status === \App\Enum\OfferStatus::COMPLETED->value)
Completed |
@elseif($offer->status === \App\Enum\OfferStatus::DECLINED->value)
Declined |
@elseif($offer->status === \App\Enum\OfferStatus::WAITING_FOR_PAYMENT->value)
Waiting for payment |
@endif
Current Offer Price (USD) | @if($offer->price != null) @currency($offer->price) @else Not yet defined @endif | |||
Created At | {{ $offer->created_at->isoFormat('dddd, DD-MMM-Y H:mm') }} | |||
Last Updated/Modified At | @if($offer->updated_at != null) {{ $offer->updated_at->isoFormat('dddd, DD-MMM-Y H:mm') }} @else Never @endif | |||
Completed At | @if($offer->completed_at != null) {{ $offer->completed_at->isoFormat('dddd, DD-MMM-Y H:mm') }} @else Not yet completed @endif | |||
Payment Type | {{ $offer->payment_type }} |
Comment | Posted By | Role | Created At |
---|---|---|---|
{{ $comment->content }} | {{ $comment->author->name }} | as {{ ucfirst(strtolower($comment->author->type)) }} | {{ $comment->created_at->isoFormat('dddd, DD-MMM-Y H:mm') }} |