You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
<?php |
|
|
|
namespace App\Models; |
|
|
|
use Illuminate\Database\Eloquent\Model; |
|
use Carbon\Carbon; |
|
|
|
class RequestMaterial extends Model |
|
{ |
|
protected $table = 'm_req_material', $guarded = ['id']; |
|
|
|
const CREATED_AT = 'created_at'; |
|
const UPDATED_AT = 'updated_at'; |
|
|
|
protected $casts = [ |
|
'id' => 'integer', |
|
'proyek_id' => 'integer', |
|
'price' => 'float', |
|
'qty' => 'float', |
|
'qty_received' => 'float' |
|
]; |
|
|
|
public function getRequiredDateAttribute($value) |
|
{ |
|
return Carbon::createFromTimestamp(strtotime($value)) |
|
->timezone(env('APP_TIMEZONE')) |
|
->toDateTimeString(); |
|
} |
|
|
|
public function getFomDateAttribute($value) |
|
{ |
|
return Carbon::createFromTimestamp(strtotime($value)) |
|
->timezone(env('APP_TIMEZONE')) |
|
->toDateTimeString(); |
|
} |
|
|
|
public function getPrDateAttribute($value) |
|
{ |
|
return Carbon::createFromTimestamp(strtotime($value)) |
|
->timezone(env('APP_TIMEZONE')) |
|
->toDateTimeString(); |
|
} |
|
|
|
public function getPoDateAttribute($value) |
|
{ |
|
return Carbon::createFromTimestamp(strtotime($value)) |
|
->timezone(env('APP_TIMEZONE')) |
|
->toDateTimeString(); |
|
} |
|
}
|
|
|