phpdotenv is made for development environments, and generally should not be used in production. In production, the actual environment variables should be set so that there is no overhead of loading the .env file on each request. This can be achieved via an automated deployment process with tools like Vagrant, chef, or Puppet, or can be set manually with cloud hosts like Pagodabox and Heroku.
Мы работали с 4мя программистами за деньги (ставка от 19 до 25$)
что за проблемавы вешаете обработчик события на элемент, которого не существует в тот момент, в который вы этот обработчик собственно вешаете.
$('body').on('click', '.mobil', function() {
$(this).css('background', 'blue');
});
$('.block').click(function() {
if ( $(this).hasClass('mobil') ) {
$(this).css('background', 'blue');
}
});