D
Size: a a a
D
B
B
B
ПЛ
public function auth(){
$user = Auth::user();
if ($user->isPhoneAuthEnabled()) {
$user->disablePhoneAuth();
} else {
$user->enablePhoneAuth();
}
}
V
ПЛ
V
V
B
С
VY
O
A
A
R
ПЛ
R
R
K
function (Carbon $start, Carbon $end){
return \App\Tvprogramm::select('name', 'description', 'date')
->where('date', '>=', $start)
->where('date', '<=', $end)
->orderBy('date')
->get()
}