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

Export Register

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

Export Information

@php $i = 1; @endphp @foreach($exports as $index => $info) {{-- --}} @endforeach
Sl# File No Order Ref Invoice No B/L No. Exp No. Action
{{ $export_details->firstItem() + $index }}{{$i++}} {{ $info->file_no != null ? $info->file_no : '' }} {{ $info->ord_ref != null ? $info->ord_ref : '' }} {{ $info->inv_no != null ? $info->inv_no: '' }} {{ $info->bl_no != null ? $info->bl_no: '' }} {{ $info->exp_no != null ? $info->exp_no: '' }} {{ Form::open(['route'=>['delete.export',$info->id],'method'=>'delete','onsubmit'=>'return confirmDelete()']) }}        {{ Form::close() }}
{{--{{$export_details->links() }}--}}
{{--list end--}}
@endsection @section('script') @endsection