@extends('adminlte::page') @section('title', 'Customer Quotes') @section('content_header')

Customer Quotes

@stop @section('adminlte_css') @stop @section('content')

Add search condition

@if(count($quotes ?? []) > 0) @foreach($quotes as $quote) @endforeach @else @endif
First Name Surname Phone Email City State Postcode Product Name Product Price Product Qty Created At Token Product Configuration Token Expired Action
{{ $quote->first_name }} {{ $quote->surname }} {{ $quote->phone }} {{ $quote->email }} {{ $quote->city }} {{ $quote->state }} {{ $quote->postcode }} {{ $quote->product_name }} {{ $quote->product_price }} {{ $quote->product_qty }} {{ $quote->created_at }} {{ $quote->token }} {{ $quote->product_configuration }} {{ $quote->token_expires_at }}
No quote found
@stop @section('css') {{-- Add here extra stylesheets --}} {{-- --}} @stop @section('adminlte_js') @stop