11 lines
148 B
PHP
11 lines
148 B
PHP
<?php
|
|
|
|
use App\Models\Barbershop;
|
|
|
|
if (! function_exists('barbershop')) {
|
|
function barbershop()
|
|
{
|
|
return Barbershop::all();
|
|
}
|
|
}
|