@extends('layouts.master')
@section('title')
Documents Waiting
@endsection
@section('style')
@endsection
@section('script')
@endsection
@section('content')
@include('layouts.header')
{{--
--}}
{{--
@yield('title')
--}}
{{--
--}}
| No. |
Name |
Number of Documents |
Manage |
@php
$quotation = DB::table('quotation')->where('quotation_status_approved','waiting')->get();
@endphp
| 1 |
Quotation List |
{{ count($quotation) }}
|
{{--
--}}
|
@include('layouts.footer')
@endsection