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

Invoices

@include('flash::message')

Bill List

{{--
--}}
@if(isset($cargo))

{{-- --}}

@foreach($cargo as $cargodetail)
{!! Form::label('t1', 'T1:') !!}
{!! Form::label('t1', $cargodetail->cargoheader->t1) !!}
{!! Form::label('declaration', 'Declaration No:') !!}
{!! Form::label('declaration', $cargodetail->cargoheader->cargodeclarations->declaration_number) !!}
@if($cargodetail->container_number)
{!! Form::label('container_info', 'Container Info:') !!}
{!! Form::label('container_info', $cargodetail->container_number. '['. $cargodetail->container_size.']') !!}
@endif
{!! Form::label('consignee', 'Consignee:') !!}
{!! Form::label('consignee', $cargodetail->cargoheader->cargodeclarations->consignees->name) !!}
{!! Form::label('transitor', 'Transitor:') !!}
{!! Form::label('transitor',$cargodetail->cargoheader->cargodeclarations->transitors->name) !!}
@endforeach
@endif @include('finance.additionalbills.bill_table')
@stop @section('footer_scripts') @stop