@extends('layouts.fixed') @section('title','Export Register Form') @section('css') @endsection @section('content')

Export Register

{{--
--}}
{{-- list start--}}

Export Information

@foreach($export_details as $index => $info) @if($info->otherExport !=null) @else @endif @endforeach
Sl# Invoice No File No Order Ref B/L No. Exp No. PR Value PR Date CBC PRC No PRC Date Action
{{ $export_details->firstItem() + $index }} {{ $info->inv_no != null ? $info->inv_no: '' }} {{ $info->file_no != null ? $info->file_no : '' }} {{ $info->ord_ref != null ? $info->ord_ref : '' }} {{ $info->bl_no != null ? $info->bl_no: '' }} {{ $info->exp_no != null ? $info->exp_no: '' }}{{ $info->otherExport->pr_value ? $info->otherExport->pr_value : "N/a" }} {{ $info->otherExport->pr_date ? $info->otherExport->pr_date : "N/a" }} {{ is_numeric($info->otherExport->pr_value)?($info->bill_value - $info->otherExport->pr_value):$info->otherExport->pr_value}} {{ $info->otherExport->prc_no ? $info->otherExport->prc_no : "N/a" }} {{ $info->otherExport->prc_date ? $info->otherExport->prc_date : "N/a" }}No Payment Details Found {{ Form::open(['route'=>['delete.othersExportInfo',$info->otherExport ? $info->otherExport->id : null],'method'=>'delete','onsubmit'=>'return confirmDelete()']) }} @if($info->otherExport ==null) @endif @if($info->otherExport !=null) @endif {{ Form::close() }}
{{$export_details->links() }}
{{--list end--}}
@endsection @section('script') @endsection