@extends('layouts.app') @section('urlContent') {!! view('components.breadcrumbs', [ 'b_items' => [ 'Tekliflerim' => '/root/offers', 'Teklif Detayı' => '/root/offer/show/' . $offer->id, ], ]) !!} @endsection @section('content')

Teklif

Düzenle

{{ $offer->headOffice->office_title }}

@php $date = \Carbon\Carbon::parse($offer->end_date); $date = $date->isoFormat('D MMMM Y'); @endphp
Teklif Bitiş Tarihi:
{{ $date }}

{{ $offer->headOffice->address }}

{{ $offer->headOffice->tax_admin }}

{{ $offer->headOffice->office_tax_no }}

Teklif Açıklaması:
{{ $offer->offer_description }}
@php $offerDate = \Carbon\Carbon::parse($offer->offer_date); $offerDate = $offerDate->isoFormat('D MMMM Y'); @endphp {{ $offerDate }}
@php $working_types = json_decode($offer->headOffice->working_types, true) ?? []; @endphp @if (in_array('hourly', $working_types)) @endif @if (in_array('daily', $working_types)) @endif @if (in_array('monthly', $working_types)) @endif {{-- --}} @foreach ($offer->offerProducts as $product) @if (in_array('hourly', $working_types)) @endif @if (in_array('daily', $working_types)) @endif @if (in_array('monthly', $working_types)) @endif {{-- --}} @endforeach
Hizmet / Ürün Saatlik Ücret Günlük Ücret Aylık Ücret Vergi
KDV
{{--

Ara Toplam

Toplam KDV

Genel Toplam

--}}
@csrf
@csrf

Durum

@if ($offer->status == 2)

Onay Bekliyor

@elseif ($offer->status == 0)

Reddedildi

@else

Onaylandı

@endif
@if ($offer->status == 2)
@csrf
@endif
@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 @endsection