@extends('adminlte::page') @section('title', 'Dashboard') @section('content')

Data Transaksi

@forelse($borrows as $index => $borrow) @empty @endforelse
No Peminjam ID Sepeda Peminjaman Pengembalian Terminal Awal Terminal Akhir Tagihan
{{$index+1}} {{$borrow->user['name']}} {{$borrow->bike_id}} {{$borrow->borrow_time}} @if($borrow->status == "borrowed") Belum dikembalikan @else {{$borrow->return_time}} @endif {{$borrow->terminal['name']}}, {{$borrow->terminal['city']}} {{$borrow->terminal['name']}}, {{$borrow->terminal['city']}} Rp {{$borrow->tagihan}}
{{--
--}} {{-- @include('transaction.chart')--}} {{--
--}} @stop @section('css') @stop @section('js') @include('transaction.script.chart') @stop