@extends('layouts.basic') @section('styles') @endsection @section('content')

Quotation

Search

Quotation-List

@foreach ($quotation as $quotations) @endforeach
S.NO Date Reference no Customer name Contact no Total Status Action
{{ $loop->iteration }} {{ date('d/m/Y', strtotime($quotations->date)) }} {{ $quotations->invoice_number }} {{ $quotations->customer->customer_name }} {{ $quotations->mobile_number }} ₹{{ $quotations->total }}
@csrf @method('DELETE')
{{-- href="{{ route('quotations.share', ['id' => $quotations->id, 'platform' => 'facebook']) }}" href="{{ route('quotations.share', ['id' => $quotations->id, 'platform' => 'twitter']) }}" href="{{ route('quotations.share', ['id' => $quotations->id, 'platform' => 'linkedin']) }}" href="{{ route('quotations.share', ['id' => $quotations->id, 'platform' => 'pinterest']) }}" href="{{ route('quotations.share', ['id' => $quotations->id, 'platform' => 'whatsapp']) }}" --}}
@endsection @section('script') {{-- delete ajax call --}} @endsection