mirror of
https://github.com/anna-sara/lan_kiosk
synced 2026-09-03 11:25:02 +02:00
24 lines
476 B
PHP
24 lines
476 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Transaction extends Model
|
|
{
|
|
protected $fillable = [
|
|
'payment_reference',
|
|
'customer_id',
|
|
'expected_amount',
|
|
'status',
|
|
'give_leftover',
|
|
'source',
|
|
'instruction_uuid',
|
|
'callback_identifier',
|
|
];
|
|
|
|
/** Shared secret with Swish — never expose it in a response */
|
|
protected $hidden = [
|
|
'callback_identifier',
|
|
];
|
|
}
|