@section('title', get_setting('site_name') . ' | Asset Branch Transfer') @push('css') @endpush

Asset Branch Transfer

Move Inventory Items Across Branches With Traceability.

@if (session()->has('message'))
{{ session('message') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif
New Transfer
@error('assetId') {{ $message }} @enderror
@error('toBranchId') {{ $message }} @enderror
@error('reason') {{ $message }} @enderror
Transfer History
@forelse($history as $row) @empty @endforelse
Recorded Asset From To Transfer Reason Status By
{{ $row->created_at?->format('Y-m-d H:i') }} {{ $row->assetRow?->name ?? '—' }} {{ $row->fromBranch?->name ?? '—' }} {{ $row->toBranch?->name ?? '—' }} {{ $row->reason ? \Illuminate\Support\Str::limit($row->reason, 220) : '—' }} @php $status = $row->approval_status ?? 'approved'; $badge = match ($status) { 'pending' => 'badge-warning', 'rejected' => 'badge-danger', default => 'badge-success', }; @endphp {{ ucfirst($status) }} {{ $row->createdBy?->name ?? '—' }}
No Records Yet
@section('script') @endsection