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

Sales By Partner Report

@error('fr_id') {{ $message }} @enderror
{{ 'Reset' }}
@if($bookings)
@php $index = $bookings->firstItem() @endphp @if($index == '') @endif @foreach($bookings as $booking) @endforeach
# Consg. No. Partner Name Org. Pincode Dest. Pincode Subscription B Type B Date Status Weight (g)
No Records Found
{{ $index++ }} {{ $booking->consg_number }} {{ $booking->BookingFranchisee ?? '' }} {{ $booking->pincode->pincode ?? '' }} {{ $booking->delivery->dest_pincode ?? '' }} {{ $booking->subs_name ?? '' }} {{ $booking->batch_id ? 'Bulk': 'Single' }} {{ date('d-m-Y H:i', strtotime($booking->created_at)) }} {{ $booking->status }} {{ $booking->weight }}
{{ $bookings->appends(request()->query())->links() }}
@endif
@endsection