ПЛ
или просто поставить разные версии php, сделать батники php56.bat , php71.bat и т.п. и юзать веб-сервер, встроенный в php - php artisan serve —port=xxxx
Size: a a a
ПЛ
M
С
С
АВ
И
M
ИС
ИС
ИС
AH
$model->line_one
изменяет $model->address->lineOne
- это же бред, ну...attributes
. Когда запрашивается ключ - обрабатывается castAttributes
. Когда записываешь - setAttribute
. И так каждый раз.Д
https://laravel.com/docs/5.8/notifications#sending-notifications
public function SendNot(){
$user = Auth::user();
$user->notify(new TestNot($user));
return 'Notification Sended';
}
Previewing Mail Notifications
..... When a MailMessage is returned, it will be rendered and displayed in the browser, allowing you to quickly preview its design without needing to send it to an actual email address:
Route::get('mail', function () {
$invoice = App\Invoice::find(1);
return (new App\Notifications\InvoicePaid($invoice))
->toMail($invoice->user);
});
public function ShowNot(){
$user = Auth::user();
return (new TestNot($user));
}
The Response content must be a string or object implementing __toString(), "object" given.
ИЛ
$model->line_one
изменяет $model->address->lineOne
- это же бред, ну...attributes
. Когда запрашивается ключ - обрабатывается castAttributes
. Когда записываешь - setAttribute
. И так каждый раз.AH
ИЛ
https://laravel.com/docs/5.8/notifications#sending-notifications
public function SendNot(){
$user = Auth::user();
$user->notify(new TestNot($user));
return 'Notification Sended';
}
Previewing Mail Notifications
..... When a MailMessage is returned, it will be rendered and displayed in the browser, allowing you to quickly preview its design without needing to send it to an actual email address:
Route::get('mail', function () {
$invoice = App\Invoice::find(1);
return (new App\Notifications\InvoicePaid($invoice))
->toMail($invoice->user);
});
public function ShowNot(){
$user = Auth::user();
return (new TestNot($user));
}
The Response content must be a string or object implementing __toString(), "object" given.
ИЛ
ИЛ
ИЛ
Д