All Projects → justincdotme → Foocart

justincdotme / Foocart

A Laravel 5 eCommerce application with integrated Stripe payments.

Projects that are alternatives of or similar to Foocart

Laravel Google Cloud Storage
A Google Cloud Storage filesystem for Laravel
Stars: ✭ 415 (+5087.5%)
Mutual labels:  laravel, laravel5
Laravel Restaurant Pos
Restaurant POS
Stars: ✭ 27 (+237.5%)
Mutual labels:  laravel, laravel5
Framework
The truly Laravel E-commerce Framework
Stars: ✭ 456 (+5600%)
Mutual labels:  laravel, laravel5
Laravel5 Jsonapi
Laravel 5 JSON API Transformer Package
Stars: ✭ 313 (+3812.5%)
Mutual labels:  laravel, laravel5
Twitter
Twitter API for Laravel 5.5+, 6.x, 7.x & 8.x
Stars: ✭ 755 (+9337.5%)
Mutual labels:  laravel, laravel5
Coastercms
The repository for Coaster CMS (coastercms.org), a full featured, Laravel based Content Management System
Stars: ✭ 380 (+4650%)
Mutual labels:  laravel, laravel5
Laracms
LaraCMS 是在学习 laravel ( web 开发实战进阶 + 实战构架 API 服务器) 过程中产生的一个业余作品,试图通过简单的方式,快速构建一套基本的企业站同时保留很灵活的扩展能力和优雅的代码方式,当然这些都得益Laravel的优秀设计。同时LaraCMS 也是一个学习Laravel 不错的参考示例。
Stars: ✭ 588 (+7250%)
Mutual labels:  laravel, laravel5
Laravel Database Encryption
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Stars: ✭ 238 (+2875%)
Mutual labels:  laravel, laravel5
Blade Migrations Laravel
An intelligent alternative version of Laravel 5/6 Database Migrations - uses raw-sql syntax, transactions, auto-rollback, UP-DOWN-UP testing
Stars: ✭ 25 (+212.5%)
Mutual labels:  laravel, laravel5
Laravel User Verification
PHP package built for Laravel 5.* to easily handle a user email verification and validate the email
Stars: ✭ 755 (+9337.5%)
Mutual labels:  laravel, laravel5
Laravel Recaptcha
Google ReCaptcha package for Laravel
Stars: ✭ 273 (+3312.5%)
Mutual labels:  laravel, laravel5
Angular5.2 Laravel5.6
Angular 5.2 and Laravel 5.6 Authentication and CRUD
Stars: ✭ 17 (+112.5%)
Mutual labels:  laravel, laravel5
Cors
🔮Supported(Laravel/Lumen/PSR-15/Swoft/Slim/ThinkPHP) - PHP CORS (Cross-origin resource sharing) middleware.
Stars: ✭ 266 (+3225%)
Mutual labels:  laravel, laravel5
Laravel Blade
This package adds syntax definitions for the Laravel Blade engine.
Stars: ✭ 395 (+4837.5%)
Mutual labels:  laravel, laravel5
Api Generator
PHP-code generator for Laravel framework, with complete support of JSON-API data format
Stars: ✭ 244 (+2950%)
Mutual labels:  laravel, laravel5
Fullycms
Fully CMS - Multi Language Content Management System - Laravel
Stars: ✭ 465 (+5712.5%)
Mutual labels:  laravel, laravel5
Learn Laravel
Laravel 学习资料和开源项目集
Stars: ✭ 229 (+2762.5%)
Mutual labels:  laravel, laravel5
Auth Tests
Always-current tests for Laravel's authentication system. Curated by the community.
Stars: ✭ 230 (+2775%)
Mutual labels:  laravel, laravel5
Lang
List of 78 languages for Laravel Framework 4, 5, 6, 7 and 8, Laravel Jetstream , Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova and Laravel Spark.
Stars: ✭ 6,285 (+78462.5%)
Mutual labels:  laravel, laravel5
Laravel Widgetize
A minimal package to help you make your laravel application cleaner and faster.
Stars: ✭ 791 (+9787.5%)
Mutual labels:  laravel, laravel5

fooCart

fooCart is a Laravel 5 eCommerce application with integrated Stripe payments.

The goal of this project was to create a fully functional e-commerce application.

The following features were required for this project:

  • Fully functional administration panel
  • Slideshow management module
  • Inventory management module
  • User management module
  • Order management module
  • Payment processing using the Stripe API.
  • Message management module
  • On the fly image manipulation using ImageMagick
  • Client side rendering of inventory using Handlebars JS

Note All models are located in /app/src

View Demo

https://foocart.justinc.me

https://foocart.justinc.me/admin

Username: [email protected]

Password: demo123

Requirements

  • This application requires the Composer Dependency Manager, located at getcomposer.org
  • This application requires a Stripe account with API keys.
  • This application is configured to use the Mandrill email API and requires a Mandrill account.

Installation

Clone the repository

git clone https://github.com/justincdotme/foocart.git

Install the application using Composer

composer install

Configure your environment as per the Laravel documentation then run the migrations+seeds

php artisan migrate
php artisan db:seed

Set your Stripe API keys in config/stripe.php

return [
    'secret_key' => env('SECRET_KEY', 'secret key here'),
    'publishable_key' => env('PUBLISHABLE_KEY', 'publishable key here'),
];

Set the URL to the app in config/app.php

'url' => 'http://url.to.your.application',

Add your Mandril API information to config/mail.php

'driver' => 'smtp',
'host' => 'smtp.mandrillapp.com',
'port' => 587,
'from' => ['address' => '[email protected]', 'name' => 'Name'],
'username' => 'Mandrill username',
'password' => 'Mandrill key',

Configure return email addresses for outgoing email messages in config/messages.php

return [

    //Website admin email
    'site_admin' => '[email protected]'

];

IMPORTANT NOTICE

This application is a portfolio project and is not intended to be used in a production capacity. The application has been developed with security in mind but I offer no gaurantee that it is safe for use in a live environment. There are several (much better) e-commerce solutions available that are both security tested and widely supported. I would highly recommend that you use one of those for a live environment. With that said, you are free to use this application however you see fit. Please review the MIT License at the bottom.

Credits

License

The MIT License (MIT)

Copyright (c) 2015 Justin Christenson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].