| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
-
- namespace App\Models;
-
- use App\Models\Mutation;
- use Carbon\Carbon;
- use Illuminate\Database\Eloquent\Casts\Attribute;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
-
- class OutTransaction extends Model
- {
- use HasFactory;
-
- protected $fillable = [
- 'plat_number',
- 'price',
- 'entry_transaction_id',
- 'type_vehicle_id',
- 'user_id',
- ];
-
- protected function createdAt(): Attribute
- {
- return Attribute::make(
- get:fn($value) => Carbon::parse($value)->translatedFormat('l d/m/Y')
- );
- }
-
- protected function platNumber(): Attribute
- {
- return Attribute::make(
- set:fn($value) => strtoupper($value)
- );
- }
-
- public function mutation()
- {
- return $this->hasOne(Mutation::class);
- }
- }
|