Database Connectionhttps://laravel.com/docs/5.7/eloquent
By default, all Eloquent models will use the default database connection configured for your application. If you would like to specify a different connection for the model, use the $connection property
Using Multiple Database Connectionshttps://laravel.com/docs/5.7/database#using-multip...
When using multiple connections, you may access each connection via the connection method on the DB facade. The name passed to the connection method should correspond to one of the connections listed in your config/database.php configuration file
If you only need the functionality of a custom rule once throughout your application, you may use a Closure instead of a rule object.
obj.each(function(prop, val) { <-- val
alert( prop ); // name -> age
});
Пересмотрел огромное количество примеров, но не нашел единого подхода к передаче связей в REST API.Это потому, что его нет.
К примеру, как лучше {"categoryId": 1} или {"category": {"id": 1}}?Как вам нравится, так и лучше.
Я думаю это вообще неудобно, так как форма должен быть единым.Тогда не делайте так, вас никто не заставляет.
Кто как решает эти проблемы?Вы забыли проблемы указать. В вопросе кроме "мне вот так не нравится" ничего нет.
<button type="submit" value="Сделать заказ" class="botton_form h4" onclick='
if (document.getElementById("tel").value == "")
{
window.open("images/сертификат.pdf", "_blank");
}'>Скачать сертификат</button>
Starting The Scheduler
When using the scheduler, you only need to add the following Cron entry to your server:* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
This Cron will call the Laravel command scheduler every minute. When the schedule:run command is executed, Laravel will evaluate your scheduled tasks and runs the tasks that are due.