Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
imalipartnersapi
/
app
:
ServiceConfig.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App; use DateTimeInterface; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class ServiceConfig extends Model { use HasFactory; protected $fillable = [ 'public_id', 'description', 'notification_type', 'notification_group', 'status', 'name', 'type_id', 'min_amount', 'max_amount', 'min_value', 'max_value' ]; protected $hidden = ['id']; protected function serializeDate(DateTimeInterface $date) { return $date->format('d-m-Y H:i:s'); } function serviceAccounts() { return $this->hasMany(ServiceConfigAccount::class); } }