@extends('layouts.master') @section('title') Quotation List @endsection @section('style') @endsection @section('content') @include('layouts.header')
Quotation List
Set Quotation
@foreach($quotation as $key => $row) @php $today = \Carbon\Carbon::now()->startOfDay(); $startDate = \Carbon\Carbon::parse($row->quotation_date)->startOfDay(); $endDate = \Carbon\Carbon::parse($row->quotation_exp_date)->startOfDay(); @endphp @endforeach
No. Project Name Quotation No. Quotation Date Expiration Date Status
{{ $key + 1 }} {{ $row->quotation_project_name }} {{ $row->quotation_no }} {{ date('d F Y', strtotime($row->quotation_date)) }} {{ date('d F Y', strtotime($row->quotation_exp_date)) }} @if ($today->lt($startDate)) {{-- ยังไม่ถึงวันที่เริ่ม (Waiting - สีส้ม) --}} Waiting @elseif ($today->between($startDate, $endDate)) {{-- อยู่ในช่วงวันที่กำหนด (Active - สีเขียว) --}} Active @else {{-- เกินวันที่กำหนด (Expired - สีแดง) --}} Expired @endif
@include('layouts.footer') @endsection @section('script') {{-- Tawk.to Script --}} {{-- Logic Chatbot / Webhook --}} @endsection