@extends('layouts.admin') @section('page-title') {{ __('Warehouse Transfer') }} @endsection @push('script-page') @endpush @section('breadcrumb')
| {{ __('From Warehouse') }} | {{ __('To Warehouse') }} | {{ __('Product') }} | {{ __('Quantity') }} | {{ __('Date') }} | {{ __('Action') }} |
|---|---|---|---|---|---|
| {{ !empty($warehouse_transfer->fromWarehouse) ? $warehouse_transfer->fromWarehouse->name : '' }} | {{ !empty($warehouse_transfer->toWarehouse) ? $warehouse_transfer->toWarehouse->name : '' }} | @if (!empty($warehouse_transfer->product)){{ !empty($warehouse_transfer->product) ? $warehouse_transfer->product->name : '' }} | @endif{{ $warehouse_transfer->quantity }} | {{ Auth::user()->dateFormat($warehouse_transfer->date) }} | @if (Gate::check('edit warehouse') || Gate::check('delete warehouse'))
{{-- @can('edit warehouse') --}}
{{-- --}}
{{-- --}}
{{-- --}}
{{-- --}}
{{-- --}}
{{-- @endcan --}}
@can('delete warehouse')
@endcan
|
@endif