@extends('manager.layouts.master') @section('content')

Courier Slip

Invoice No : {{ $courierInfo->invoice_id }}
{!! $code !!}
Receive Date :

{{ $courierInfo->created_at->toDateString() }}


Sender Details:
Branch  : {{ $courierInfo->branch->name }}
Name    : {{ $courierInfo->sender_name }}
@if($courierInfo->sender_email)
Email     : {{ $courierInfo->sender_email }}
@endif
Phone    : {{ $courierInfo->sender_phone }}
@if($courierInfo->sender_address)
Address : {!! $courierInfo->sender_address !!}
@endif
Receiver Details:
Branch  : {{ $courierInfo->branch->name }}
Name    : {{ $courierInfo->receiver_name }}
@if($courierInfo->receiver_email)
Email     : {{ $courierInfo->receiver_email }}
@endif
Phone    : {{ $courierInfo->receiver_phone }}
@if($courierInfo->receiver_address)
Address : {{ $courierInfo->receiver_address }}
@endif
@endsection