52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class RefundUser
|
|
{
|
|
private static $history_refundUser=[
|
|
[
|
|
"orderId" => "INV-1234",
|
|
"Customer" => "npannisa",
|
|
"seller" => "rayhan",
|
|
"Total" => " Rp.200.000",
|
|
"dueDate"=>"29 juni 2023",
|
|
"status"=>"diterima",
|
|
|
|
],
|
|
[
|
|
"orderId" => "INV-1235",
|
|
"Customer" => "jilhan haura",
|
|
"seller" => "kevin",
|
|
"Total" => " Rp.500.000",
|
|
"dueDate"=>"29 Januari 2023",
|
|
"status"=>"diproses",
|
|
|
|
],
|
|
[
|
|
"orderId" => "INV-1236",
|
|
"Customer" => "Raihan Surya",
|
|
"seller" => "Salsa",
|
|
"Total" => " Rp.400.000",
|
|
"dueDate"=>"20 Agustus 2023",
|
|
"status"=>"ditolak",
|
|
|
|
],
|
|
[
|
|
"orderId" => "INV-1237",
|
|
"Customer" => "Fatur Rahman",
|
|
"seller" => "Satria ",
|
|
"Total" => " Rp.100.000",
|
|
"dueDate"=>"2 Agustus 2023",
|
|
"status"=>"ditolak",
|
|
|
|
],
|
|
];
|
|
public static function HistoryRefundUser(){
|
|
return self::$history_refundUser;
|
|
}
|
|
}
|