@include('backend/includes/header')
Pricing History < 50 Books
@if(session()->has('success'))
{{ session()->get('success') }}
@endif
Pricing History < 50 Books
| # |
Cover Name |
Width x Height |
Book Qty |
Page Count |
Email / IP |
Book Price |
Setup Price |
Total Price |
Date Time |
@foreach ($quotations as $quotation)
| {{ $i++ }} |
{{ $quotation->name }} ({{ ucfirst($quotation->type) }}) |
{{ $quotation->width }} x {{ $quotation->height }} ({{ ucfirst($quotation->book_size) }}) |
{{ $quotation->book_quantity }} |
{{ $quotation->page_count }} |
{{ $quotation->email }} |
{{ $quotation->book_price }} |
{{ $quotation->setup_fee }} |
{{ $quotation->total_price }} |
{{ $quotation->date_time }} |
@endforeach
@include('backend/includes/footer')