$Org= OrgModel::all();
name
, org
, order_data
.order_data
это дата и время ( т.е. вот такое: 0000-00-00 00:00:00 )::find(id);
)By default, timestamps are formatted as 'Y-m-d H:i:s'. If you need to customize the timestamp format, set the $dateFormat property on your model. This property determines how date attributes are stored in the database, as well as their format when the model is serialized to an array or JSON:
public function getOrderDataAttribute($value) {
return $value->toDateString();
}