Accessing Raw Model Data with Laravel's attributesToArray Method
Published on by Harris Raftopoulos
When working with Eloquent models, sometimes you need just the core database attributes without relationships or computed properties. Laravel's attributesToArray method provides a clean way to access this raw model data.
// Basic usage$user = User::first();$attributes = $user->attributesToArray();// Returns raw database attributes// ['id' => 1, 'name' => 'John', 'email' => 'john@example.com']
Let's explore a practical example implementing an audit system for model changes:
<?php namespace App\Models; use App\Models\AuditLog;use Illuminate\Database\Eloquent\Model; class AuditableModel extends Model{ protected static function booted() { static::updated(function ($model) { $original = $model->getOriginal(); $current = $model->attributesToArray(); // Compare only actual database attributes $changes = array_diff($current, $original); if (!empty($changes)) { AuditLog::create([ 'model_type' => get_class($model), 'model_id' => $model->id, 'original' => json_encode($original), 'changes' => json_encode($changes), 'user_id' => auth()->id(), 'timestamp' => now() ]); } }); }} class Product extends AuditableModel{ protected $appends = ['formatted_price', 'stock_status']; public function category() { return $this->belongsTo(Category::class); } public function getFormattedPriceAttribute() { return "$" . number_format($this->price / 100, 2); }}
The attributesToArray method provides direct access to model attributes as stored in the database, making it perfect for scenarios where you need the raw data without additional computed properties or relationships.