import React from 'react' import { Link, router } from '@inertiajs/react' import { Head } from '@inertiajs/react' import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout' import Pagination from '@/Components/Pagination' import Button from '@/Components/Button' import { HiRefresh } from 'react-icons/hi' export default function PaylaterTenorHistory(props) { const { query: { links, data }, customer, } = props return (
{data.map((history) => ( ))}
Customer Tanggal Tenor Surat Perjanjian Creator
{customer.name} {history.format_created_at} {history.day_deadline} File Uploaded {history.creator.name}
) }