CURRENT PATH:
/
home
/
u451283037
/
domains
/
rupandehiinstitute.com
/
public_html
/
subdomains
/
smarttraining
/
app
/
KEMBALI
|
HOME
Upload File Local:
Upload
Upload via URL:
Download
Dir Baru
File Baru
Editing:
Bank.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Bank extends Model { protected $guarded = []; public function filterDataApi() { return [ 'bank_id' => $this->id, 'bank_name' => $this->bank_name, 'account_no' => $this->account_no, 'balance' => $this->current_balance, 'opened_at' => $this->created_at->diffForHumans(), 'opened_date' => $this->date, 'opened_time' => $this->created_at->format('h:i:s A'), 'opened_date_time' => $this->date . " " . $this->created_at->format(' h:i:s A') ]; } }
SIMPAN
BATAL