Document::with(['document_customs', 'document_templates'])
->withCount(['document_templates as for_sort' => function ($q) {
$q->select('field_order');
}])
->where('id', '=', $document->id)
->orderBy('for_sort', 'DESC')
->get();