@extends('layouts.admin-simple') @section('title', 'Outgoing Transactions') @section('content')

exit_to_app Outgoing Transactions

Material dispatch and inventory management system

filter_list Filters
clear Clear
view_list Outgoing Transactions ({{ $transactions->total() }})
@if($transactions->count() > 0)
@foreach($transactions as $transaction) @endforeach
Reference Date Project Division Requested By Type of Goods Status Actions
{{ $transaction->reference_number }} @if($transaction->material_request_number)
{{ $transaction->material_request_number }} @endif
{{ $transaction->transaction_date->format('M d, Y') }} @if($transaction->project) {{ $transaction->project->project_name }} @if($transaction->project->project_number)
{{ $transaction->project->project_number }} @endif @else N/A @endif
@if($transaction->division) {{ $transaction->division->name }} @else N/A @endif @if($transaction->requester) {{ $transaction->requester->name }} @else N/A @endif {{ $transaction->type_of_goods }} @switch($transaction->status) @case('pending') pending Pending @break @case('approved') check_circle Approved @break @case('completed') local_shipping Completed @break @default {{ ucfirst($transaction->status) }} @endswitch
visibility @if($transaction->status !== 'completed') edit @endif @if($transaction->status === 'pending')
@csrf
@endif @if($transaction->status === 'approved')
@csrf
@endif
Showing {{ $transactions->firstItem() }} to {{ $transactions->lastItem() }} of {{ $transactions->total() }} results
{{ $transactions->appends(request()->query())->links() }}
@else
inbox
No Outgoing Transactions Found

No transactions match your current filters.

add Create First Transaction
@endif
@endsection @push('scripts') @endpush