Myndalgo: Behavioural Self-Management App

build a simple robust no gimmics (straight forward) APP in the domain of mindset mapping and behaviour tools to change attitudes App-Build Prompt: Mindset in Uncertainty Companion Build a polished, free-to-use mobile app for Android, intended for launch on the Google Play Store… (Budget: $750 – $1500 AUD, Jobs: Android, App Design, App Development, iPhone, Mobile App Development, PHP, User Interface / IA, User Research)

Read more here:: https://www.freelancer.com/projects/user-interface-ia/Myndalgo-Behavioural-Self-Management-App.html

      

Comprehensive Website Development & Design

1. Project Concept I developed a website aimed at providing a digital platform to display information, services, and content in an organized and user-friendly manner. The site was designed to allow visitors… (Budget: $8 – $15 USD, Jobs: CSS, HTML, JavaScript, MySQL, PHP)

Read more here:: https://www.freelancer.com/projects/php/Comprehensive-Website-Development-Design.html

      

Fitness Training Website With Ads

I want a streamlined website that spotlights my dating coaching services and turns visitors into paying clients. The site should do three things exceptionally well: showcase what I offer, let prospects… (Budget: $30 – $250 AUD, Jobs: Google Ads, Graphic Design, Mobile Development, PHP, SEO, Web Design, Web Development, Website Design, WordPress, WordPress Plugin)

Read more here:: https://www.freelancer.com/projects/web-development/Fitness-Training-Website-With-Ads.html

      

Existing Website Upgrade and Development -Mumbai based only

I want a clean, modern website that helps our HVAC & MEP consultancy turn visitors into solid enquiries. The site’s main job is lead generation, so every page—from the hero banner down to the footer—should quietly nudge the user toward a call-to-action… (Budget: ₹12500 – ₹37500 INR, Jobs: Graphic Design, HTML, PHP, SEO, UI / User Interface, WordPress)

Read more here:: https://www.freelancer.com/projects/wordpress/HVAC-MEP-Lead-Gen-Website.html

      

Build Premium Magento Store

My new lifestyle brand, Moss, needs a fully functioning e-commerce website that feels clean, premium, and effortless to shop. Magento is my preferred platform because of its scalability and multi-store… (Budget: ₹700 – ₹1500 INR, Jobs: HTML, Magento, PHP, SEO, UI / User Interface, Web Design, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Build-Premium-Magento-Store.html

      

Laravel Backend Development

I’m building a new application and need a Laravel specialist to handle the entire backend. The core pillars are: • User authentication – secure registration, login, password reset, and role-based access… (Budget: $30 – $250 USD, Jobs: API Development, Backend Development, Database Design, Laravel, MySQL, PHP, RESTful API, Website Design)

Read more here:: https://www.freelancer.com/projects/php/Laravel-Backend-Development-40712532.html

      

Backend Build for Tour App

I have an audio-guided walking-tour web app that currently lives as a fully static bundle (HTML, CSS, vanilla JS). It’s time to give it a proper server side. What I need you to do • Authentication – Add email registration and login, Google social login, and a standard “forgot password” flow… (Budget: €8 – €30 EUR, Jobs: API Development, Backend Development, Database Management, HTML, JavaScript, MySQL, PHP, PostgreSQL)

Read more here:: https://www.freelancer.com/projects/backend-development/Backend-Build-for-Tour-App.html

      

Instalando Laravel Framework

laravelLaravel utiliza o composer para gerenciar suas dependências. Então, antes de usar o Laravel, você precisa ter o composer instalado em sua máquina. Caso não tenha veja como fazer a instalação neste post anterior: Instalando Composer

 

1. Baixe o instalador do laravel via composer

php composer.phar global require "laravel/installer=~1.1"

 

2. Criar projeto

php composer.phar create-project laravel/laravel phpConference 4.2 --prefer-dist

 

3. Configurar ambiente laravel

Nesses arquivos você poderá configurar a URL para os diferentes ambientes como também o local, timezone, chave para criptografia, entre outros.

Produção:

phpConference/app/config/app.php

Local:

phpConference/app/config/local/app.php

 

4. Permitir escrita ao servidor web para o seguinte diretório:

phpConference/app/storage

 

Requisitos:

PHP >= 5.4
Extensão PHP MCrypt
Modulo apache mod_rewrite

Referência: http://laravel.com/docs/4.2

Instalando Composer

composer
Composer: ferramenta para gerenciamento de dependências em PHP. Ele permite que você declare as bibliotecas dependentes que seu projeto precisa e vai instalá-los.

Pré-Requisito: versão minima do PHP 5.3.2.

Para instalar a última versão do composer digite a seguinte linha no terminal do Linux/Unix/OSX.

Instalação via cURL:

curl -sS https://getcomposer.org/installer | php

Ou instalação via PHP:

php -r "readfile('https://getcomposer.org/installer');" | php

 

Referencia: https://getcomposer.org/doc/00-intro.md