@extends('layouts.fixed') @section('title','WELL GROUP | BUDGET SHEETS') @section('content') ALL BUDGET SHEET Home ALL BUDGET SHEET Contact No Country Merchandiser Consumer Product Description Style Quantity Created At Actions @foreach($budget_sheets as $budget_sheet) @php $contactno = null; $pi_id =$budget_sheet->export_contact_no; if ($pi_id) { $contactno = App\PiDetails::where('id',$budget_sheet->export_contact_no)->first(); } @endphp {{ $contactno != null ? $contactno->export_contact_no : ""}} {{ $budget_sheet->country != null ? $budget_sheet->country->name : '' }} {{$budget_sheet->merchandiser_name}} {{$budget_sheet->consumer_name}} {{$budget_sheet->product_description}} {{$budget_sheet->style}} {{$budget_sheet->estimate_qty}} {{$budget_sheet->created_at}} {{ Form::open(['url'=>['merchandise/budget-sheet-delete',$budget_sheet->id],'method'=>'delete','onsubmit'=>'return confirmDelete()']) }} @can('merchandiser') {{ Form::close() }} @endcan @endforeach @stop @section('style') @stop @section('script') @stop @section('plugin') @stop