| 1234567891011121314151617181920212223242526272829 |
- <?php
-
- namespace App\Models;
-
- 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')
- );
- }
- }
|