Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current none :
/
proc
/
self
/
root
/
var
/
www
/
html
/
tpid-amartha
/
app
/
Helpers
/
Or
Select Your none :
Upload File :
New :
File
Dir
//proc/self/root/var/www/html/tpid-amartha/app/Helpers/helpers.php
<?php if (!function_exists('old_or_db')) { /** * Mengambil nilai lama dari form, atau dari database jika tidak ada. */ function old_or_db($key, $model, $default = '') { if (old($key) !== null) { return old($key); } if (isset($model->$key)) { return $model->$key; } return $default; } }