@extends('layouts.app') @section('title', 'Stock Transfers') @section('breadcrumb') @endsection @section('content')
@forelse($transfers as $t) @php $sc=['pending'=>'warning','in_transit'=>'info','received'=>'success','cancelled'=>'secondary','draft'=>'secondary']; @endphp @empty @endforelse
Transfer No.FromToDateItemsStatusByActions
{{ $t->transfer_no }} {{ $t->fromWarehouse->name }} {{ $t->toWarehouse->name }} {{ $t->transfer_date->format('d M Y') }} {{ $t->items_count }} {{ ucfirst(str_replace('_',' ',$t->status)) }} {{ $t->creator->name }}
No transfers found.
@if($transfers->hasPages())@endif
@endsection