@extends('cfs/layouts/default') @section('title') Talley @parent @stop {{-- Page content --}} @section('content') Talley Dashboard Talley Search Talley @include('flash::message') Talley {{-- @lang('button.create') --}} {!! Form::open(['route' => 'cfs.talleycfs.detail']) !!} {{-- Button Drop Down--}} Search talley Search using T1 search from workorder {!! Form::close() !!} @if(isset($cargoheader)) {!! Form::label('t1', 'T1:') !!} {!! Form::label('t1', $cargoheader->t1) !!} {!! Form::label('declaration', 'Declaration No:') !!} {!! Form::label('declaration', $cargoheader->cargodeclarations->declaration_number) !!} {!! Form::label('consignee', 'Consignee:') !!} {!! Form::label('consignee', $cargoheader->cargodeclarations->consignees->name) !!} {!! Form::label('transitor', 'Transitor:') !!} {!! Form::label('transitor',$cargoheader->cargodeclarations->transitors->name) !!} @if(isset($talleys)) @include('cfs.talleycfs.table_talley') @endif @endif @stop