/**
  * Get all clients ordered by client name
  *
  * @return Client
  */
 public function orderByName()
 {
     return Client::orderBy('client_name')->get();
 }