Simple Service E-Commerce Website

I need a clean, fast website that lets visitors book and pay for my startup’s professional services in just a few clicks. The site’s core is e-commerce focused—no physical goods, only service sales—so… (Budget: ₹1500 – ₹12500 INR, Jobs: eCommerce, HTML, Payment Gateway Integration, PHP, SEO, Web Development, Website Design, WooCommerce)

Read more here:: https://www.freelancer.com/projects/woocommerce/Simple-Service-Commerce-Website.html

      

Creative Portfolio Website Development

I’m looking for an experienced web developer to create a creative portfolio website. The site should include the following sections: – About Me – Projects – Contact I’m looking for a design that is artistic and innovative… (Budget: ₹1500 – ₹12500 INR, Jobs: Creative Design, Graphic Design, HTML, JavaScript, PHP, Web Design, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-design/Creative-Portfolio-Website-Development-40511062.html

      

Custom Home Loan CRM Build

I need a lightweight, web-based CRM tailored to my home-loan business so that every enquiry is captured, nurtured, and converted without anything slipping through the cracks. The core modules must let… (Budget: ₹12500 – ₹37500 INR, Jobs: API Integration, CRM, Graphic Design, HTML, PHP, User Interface / IA, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Custom-Home-Loan-CRM-Build.html

      

Operations Platform Enhancement and Integration

We have built our own operations platform for a cleaning company, including CRM, sales pipeline, booking management, partner management, dispatching, quality control, reporting, and customer automation… (Budget: $10 – $30 USD, Jobs: Analytics, Business Intelligence, Data Analysis, Data Management, Data Visualization, MySQL, PHP, SaaS, Software Architecture, Website Design)

Read more here:: https://www.freelancer.com/projects/business-intelligence/Operations-Platform-Enhancement.html

      

Laundry Delivery Platform Development

I need a full-stack partner to build a hyper-local dry-cleaning and laundry delivery platform from the ground up. The core flow is straightforward: customers must be able to schedule a pickup online, watch… (Budget: ₹37500 – ₹75000 INR, Jobs: API Development, Database Management, Full Stack Development, JavaScript, MySQL, PHP, Software Architecture, Web Development)

Read more here:: https://www.freelancer.com/projects/full-stack-development/Laundry-Delivery-Platform-Development.html

      

Html deki script kodları Api ile veritabanına bağlamak

Sadece Türkiyedeki arkadaşlar ile çalışmak tercihimdir, uzaktan destek ile çalışmak istiyorum. HTML tabanlı otomasyon sistemimi AdminLTE arayüzüyle büyütüyorum. Gelir-gider ve borç-ödeme yönetimini zaten… (Budget: $30 – $250 USD, Jobs: AJAX, API Development, Documentation, Git, HTML, JavaScript, MySQL, PHP, REST API, Web Development)

Read more here:: https://www.freelancer.com/projects/rest-api/Html-deki-script-kodlar-Api.html

      

Digital Products E-commerce Site

I need an e-commerce website specifically for selling digital products. Key features: – Customer account management – Product reviews – Secure download links are a plus Please include a range of payment options… (Budget: ₹1500 – ₹12500 INR, Jobs: Customer Experience, eCommerce, HTML, Payment Processing, PHP, Web Development, Website Design, Website Development)

Read more here:: https://www.freelancer.com/projects/web-development/Digital-Products-commerce-Site-40497009.html

      

Make.com Automation Developer — AI Pipeline Build (SignoSI)

JOB TITLE: Make.com Automation Developer — AI Pipeline Build (SignoSI) PROJECT OVERVIEW: Build a complete automation pipeline for SignoSI, an AI-powered strategic review platform. The system routes client… (Budget: ₹12500 – ₹37500 INR, Jobs: Airtable, API, Automation, JSON, Make.com, OpenAI, PHP, Software Architecture, Website Design, XML)

Read more here:: https://www.freelancer.com/projects/Make-com/Make-com-Automation-Developer-Pipeline.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