lan_kiosk/app/Models/Transaction.php
Anna-Sara Sélea df9f1cf17e Swish feature
2026-08-22 16:13:42 +02:00

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',
];
}