45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class RefundUser
|
|
{
|
|
// use HasFactory;
|
|
|
|
private static $history_refundUser=[
|
|
[
|
|
"orderId" => "INV-1234",
|
|
"Customer" => "npannisa",
|
|
"seller" => "rayhan",
|
|
"Total" => " Rp.200.000",
|
|
"dueDate"=>"29 juni 2023",
|
|
"status"=>"diterima",
|
|
"uploadBukti" => "5.jpg"
|
|
],
|
|
[
|
|
"orderId" => "INV-1234",
|
|
"Customer" => "hantu",
|
|
"seller" => "rayhan",
|
|
"Total" => " Rp.200.000",
|
|
"dueDate"=>"29 juni 2023",
|
|
"status"=>"ditolak",
|
|
"uploadBukti" => "5.jpg"
|
|
],
|
|
[
|
|
"orderId" => "INV-1234",
|
|
"Customer" => "pocong",
|
|
"seller" => "rayhan",
|
|
"Total" => " Rp.200.000",
|
|
"dueDate"=>"29 juni 2023",
|
|
"status"=>"diterima",
|
|
"uploadBukti" => "5.jpg"
|
|
],
|
|
];
|
|
public static function HistoryRefundUser(){
|
|
return self::$history_refundUser;
|
|
}
|
|
}
|