Effective Date: 26/03/2025
Last Updated: 26/03/2025
URL: https://phoneus.com.au/privacy-policy
This Privacy Policy describes how Phone Us collects, uses, and protects your personal information when you use our services.
class ModelBrowseService | |
{ | |
/** | |
* @param class-string<Model&Searchable> $modelClass | |
*/ | |
public function browse( | |
Request $request, | |
string $modelClass, | |
?Collection $hits = null, | |
array $filters = [] |
Effective Date: 26/03/2025
Last Updated: 26/03/2025
URL: https://phoneus.com.au/privacy-policy
This Privacy Policy describes how Phone Us collects, uses, and protects your personal information when you use our services.
Effective Date: 26/03/2025
Last Updated: 26/03/2025
URL: https://phoneus.com.au/terms-of-service
Welcome to Phone Us. By registering and using our service, you agree to the following Terms of Service. If you do not agree, please do not proceed with registration.
<script setup lang="ts"> | |
import {ref, watch} from "vue"; | |
const props = defineProps<{ | |
modelValue?: boolean | undefined | |
}>(); | |
const emit = defineEmits<{ | |
(event: 'update:modelValue', value: boolean|undefined): void |
<?php declare(strict_types=1); | |
namespace App\Http\Controllers; | |
use Mail; | |
use Exception; | |
use Spatie\Regex\Regex; | |
use App\Models\Customer; | |
use App\Mail\NewVoicemail; | |
use App\Models\Voicemailbox; |
use std::fs; | |
use std::collections::HashMap; | |
use std::time::Instant; | |
use itertools::Itertools; | |
fn apply_mapping(current: u32, map: &Mapping) -> u32 { | |
let mut value: u32 = current; | |
for entity in &map.mappings { | |
if value >= entity.src && value < entity.src + entity.range { |
import os | |
import re | |
import random | |
import subprocess | |
def run_command(cmd): | |
result = subprocess.run(cmd, stdout=subprocess.PIPE, shell=True) | |
return result.stdout.decode('utf-8').strip() | |
def get_current_bg(output): |
set-option -sa terminal-overrides ",xterm*:Tc" | |
set -g mouse on | |
set -g history-limit 10000 | |
set -g base-index 1 | |
set -g pane-base-index 1 | |
set-window-option -g pane-base-index 1 | |
set-option -g renumber-windows on | |
unbind C-b |
<?php | |
namespace App\Http\Livewire\Controls; | |
use Livewire\Component; | |
class Accordion extends Component | |
{ | |
protected $listeners = ['refreshAccordion' => '$refresh']; |
<div x-cloak x-data="{ | |
hourOptions: [...Array(12+1).keys()].slice(1), | |
minuteOptions: [...Array(60).keys()], | |
isHourHighlighted: function(option) { return this.hourHighlighted === option }, | |
isHourSelected: function(option) { return this.hourValue === option }, | |
isMinuteHighlighted: function(option) { return this.minuteHighlighted === option }, | |
isMinuteSelected: function(option) { return this.minuteValue === option }, | |
highlightHourOption: function(option) { this.hourHighlighted = option }, | |
unHighlightHourOption: function(option) { this.hourHighlighted = null }, | |
highlightMinuteOption: function(option) { this.minuteHighlighted = option }, |