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:
Log.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Log extends Model { protected $guarded = []; public function user() { return $this->belongsTo(User::class); } public function filterDataApi() { return [ 'log_id' => $this->id, 'log_operation' => $this->operation, 'log_description' => $this->description ?? "N/A", 'log_operation_date_time' => $this->operation_date . " " . $this->created_at->format('h:i:s A'), 'log_operation_at' => $this->created_at->diffForHumans(), ]; } }
SIMPAN
BATAL