@extends('invoice/layouts/default') @section('title') Invoices @parent @stop {{-- Page content --}} @section('content')

Invoices

@include('flash::message')

Bill List

{{--
--}}

{{-- --}}

{!! Form::label('consignee', 'Consignee:') !!}
{!! Form::label('consignee', $declaration->consignees->name) !!}
{!! Form::label('transitor', 'Transitor:') !!}
{!! Form::label('transitor',$declaration->transitors->name) !!}
{!! Form::label('declaration', 'Declaration No:') !!}
{!! Form::label('declaration', $declaration->declaration_number) !!}
@foreach($header as $cargodetail)
{!! Form::label('t1', 'T1:') !!}
{!! Form::label('t1', $cargodetail->t1) !!}
{!! Form::label('arrival_date', 'Arrival Date:') !!}
{!! Form::label('arrival_date', $cargodetail->created_date) !!}
@endforeach
{!! Form::label('container_info', 'Container Info:') !!}
@foreach($cargo as $detail) @if($detail->container_number)
{!! Form::label('container_info', $detail->container_number. '['. $detail->container_size.']') !!}
@endif @endforeach {{--
--}} {{-- Provided Service:-{{ $service_type }}--}} {{--
--}}
@foreach($important as $info)
@foreach($info as $service=>$dates)
{!! Form::label('important_events', $service.' :- ') !!}
@foreach($dates as $name=>$date)
{{ $name }} - {!! $date !!}
@endforeach @endforeach
@endforeach
@include('invoice.bills.bill_table')
@stop @section('footer_scripts') @stop