Ejemplo n.º 1
0
 /**
  * Get all clients that are not deactivated
  *
  * @return Client
  */
 public function getActiveClients()
 {
     return Client::whereNull('deleted_at');
 }