@extends('layouts.appNew') @section('content')

Internal Transfer History

@if(count($errors) > 0)
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif @if($InternalTransfer->count() > 0) @foreach($InternalTransfer as $row) @endforeach @else @endif
Request Id From To Amount Created
{{$row->id}} {{$row->from_account_id}} {{$row->to_account_id}} $ {{$row->amount}} {{$row->created_at->format('Y-m-d')}}
No data found
@endsection