@extends('layouts.main') @section('content')

Quotation Management


Back Go To Trash @can('quotation-create') Add New Quotation @endcan
@if ($message = Session::get('success'))

{{ $message }}

@endif
@foreach($data as $value) @endforeach
No Quotation NO Company Code Company name Conformation Save and Email Created Date
{{$value->quotation_no}} {{$value->company_code}} {{$value->name}} | @can('quotation-print') | @endcan @can('quotation-mail') | @endcan @can('quotation-delete') @endcan {{$value->created_at}}
@include('quotations.create') @include('quotations.mail') @include('quotations.mailforapproval') @include('quotations.trash') @include('quotations.printformate') @include('quotations.printoption') @endsection