php - Sorting records starting with upper and lower case in Laravel view -


when sorting records in blade template records beginning lower case letter appear @ bottom. how force sortby list records alphabetically?

@foreach ($registrations->sortby('profile_last_name') $registration)   record list @endforeach 

you can use natcasesort

@foreach (natcasesort($registration->last_name) $last_name)   record list @endforeach 

Comments

Popular posts from this blog

how to insert data php javascript mysql with multiple array session 2 -

React Native allow user to reorder elements in a scrollview list -

multithreading - Exception in Application constructor -