@extends('layouts.app')
@section('content')
{{-- @include('components.sidebar')
@include('components.profile') --}}
@if ($errors->any())
@include('components.error-modal-second')
@endif
@if (session('error'))
@include('components.error-modal')
@endif
@if (session('success'))
@include('components.success-modal')
@endif
Teklif Açıklaması
|
Fatura
|
Düzenleme Tarihi
|
Teklif Toplamı
|
Görüntüle
|
@foreach ($offers as $offer)
{{ $offer->offer_description }}
|
@php
if ($offer->status == 0) {
$statusText = 'Reddedildi';
} elseif ($offer->status == 1) {
$statusText = 'Onaylandı';
} elseif ($offer->status == 2) {
$statusText = 'Onay Bekliyor';
}
@endphp
{{ $statusText }}
|
{{ $offer->update_date }}
|
{{ $offer->total }}
|
|
@endforeach
@endsection
@section('javascript')
@endsection