first commit
This commit is contained in:
21
app/Models/PaymentJatimLogs.php
Normal file
21
app/Models/PaymentJatimLogs.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class PaymentJatimLogs extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
protected $table = 'payment_jatim_logs';
|
||||
protected $fillable = [
|
||||
'type',
|
||||
'request',
|
||||
'response',
|
||||
'response',
|
||||
'created_at',
|
||||
'updated_at'
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user