JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @section('page-title') {{ __('Warehouse Transfer') }} @endsection @push('script-page') @endpush @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
@foreach ($warehouse_transfers as $warehouse_transfer) @if (!empty($warehouse_transfer->product)) @endif @if (Gate::check('edit warehouse') || Gate::check('delete warehouse')) @endif @endforeach
{{ __('From Warehouse') }} {{ __('To Warehouse') }} {{ __('Product') }} {{ __('Quantity') }} {{ __('Date') }} {{ __('Action') }}
{{ !empty($warehouse_transfer->fromWarehouse) ? $warehouse_transfer->fromWarehouse->name : '' }} {{ !empty($warehouse_transfer->toWarehouse) ? $warehouse_transfer->toWarehouse->name : '' }} {{ !empty($warehouse_transfer->product) ? $warehouse_transfer->product->name : '' }} {{ $warehouse_transfer->quantity }} {{ Auth::user()->dateFormat($warehouse_transfer->date) }} {{-- @can('edit warehouse') --}} {{--
--}} {{-- --}} {{-- --}} {{-- --}} {{--
--}} {{-- @endcan --}} @can('delete warehouse')
{!! Form::open([ 'method' => 'DELETE', 'route' => ['warehouse-transfer.destroy', $warehouse_transfer->id], 'id' => 'delete-form-' . $warehouse_transfer->id, ]) !!} {!! Form::close() !!}
@endcan
@endsection @push('script-page') @endpush