Как изменить приоритет атрибута результата laravel eloquent?
Мой красноречивый результат:
#attributes: array:21 [
"id" => "57644"
"name" => "test name"
"tell" => "09030000000"
"description" => "test discripton"
"deal_type" => "rent"
"city" => "tehran"
]
Я хочу дать это
#attributes: array:21 [
"id" => "57644"
"deal_type" => "rent"
"city" => "tehran"
"name" => "test name"
"tell" => "09030000000"
"description" => "test discripton"
]