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 -

multithreading - Exception in Application constructor -

windows - CertCreateCertificateContext returns CRYPT_E_ASN1_BADTAG / 8009310b -