@extends('panel.layouts.master') @section('content')
| ID | Firma Adı | Kullanıcı Adı | Toplam Fiyat | @if(request()->input('status') == "completed")Teklif Edilen Fiyat | @endifDurum | Oluşturma Tarihi | Son İşlem Tarihi | İşlemler |
|---|---|---|---|---|---|---|---|---|
| {{ $offer->id }} | {{ $offer?->owner?->company?->name }} | {{ $offer?->owner?->name }} | {{ money($offer->total_price, 'TRY') }} | @if(request()->input('status') == "completed"){{ money($offer->offered_price, $offer->currency?->code, false) }} | @endif@if($offer->status == "WAITING") Henüz Sepet Durumunda @elseif($offer->status == "COMPLETED") Tamamlandı @elseif($offer->status == "PROGRESS") {{ $offer->status_detail->text }} @endif | {{ $offer?->created_at->locale('tr')->translatedFormat('d F Y / H:i') }} | {{ $offer?->updated_at->locale('tr')->translatedFormat('d F Y / H:i') }} | Düzenle |