Giter Site home page Giter Site logo

laravel-cart's Introduction

laravel-cart

Latest Stable Version Total Downloads Monthly Downloads Build Status License

A Shoping Cart for Laravel Framework

Installation

Install the package through Composer.

Run the Composer require command from the Terminal:

composer require mohammadv184/laravel-cart

If you're using Laravel 5.5, this is all there is to do.

Should you still be on version 5.4 of Laravel, the final steps for you are to add the service provider of the package and alias the package. To do this open your config/app.php file.

Add a new line to the providers array:

Mohammadv184\Cart\CartProvider::class

And optionally add a new line to the aliases array:

'Cart' => Mohammadv184\Cart\Facades\Cart::class,

Now you're ready to start using the laravel-cart in your application.

Database

To save cart into the database, the package needs to know which what the name of the table is. By default the package will use a table named cart_items. If you want to change these options, you'll have to publish the config file.

php artisan vendor:publish --provider="Mohammadv184\Cart\CartServiceProvider" --tag="config"

This will give you a cart.php config file in which you can make the changes.

To make your life easy, the package also includes a ready to use migration which you can publish by running:

php artisan vendor:publish --provider="Mohammadv184\Cart\CartServiceProvider" --tag="migrations"

This will place a cart_items table's migration file into database/migrations directory. Now all you have to do is run php artisan migrate to migrate your database.

Overview

Look at one of the following topics to learn more about Laravel-cart

Usage

The laravel-cart gives you the following methods to use:

Cart::put()

Adding an item to the cart is really simple, you just use the put() method, which accepts a variety of parameters.

In its most basic form you can specify the quantity, price and product model of the product you'd like to add to the cart.

$product=Product::find(1);
Cart::put([
    "price"=>10,
    "quantity"=>1
],$product);

Cart::update()

To update an item in the cart, you'll first need the rowId of the item. Next you can use the update() method to update it.

If you simply want to update the quantity, you'll pass the update method the product model or id and the new quantity:

$product=Product::find(1);
Cart::update(2,$product); // Will update the quantity

OR

$id = 'Biuwla5871';
Cart::update($id, 2); // Will update the quantity

If you want to update more attributes of the item, you can either pass the update method an array as the first parameter. This way you can update all information of the item with the given id.

Cart::update(['price' => 1000],"16cdac2cs8"); // Will update the price
$product=Product::find(1);
Cart::update(['id'=>"1c6a4c6a75",'price'=>1000], $product); // Will update the id and price

Cart::delete()

To delete an item for the cart, you'll again need the product model or id. This id you simply pass to the delete() method and it will delete the item from the cart.

$product=Product::find(1);
Cart::delete($product);

OR

$id = 'da39a3ee5e';
Cart::delete($id);

Cart::get()

If you want to get an item from the cart using its id or product model, you can simply call the get() method on the cart and pass it the id or product model.

$product = Product::find(1);
Cart::get($product);

OR

$id = 'da39a3ee5e';
Cart::get($id);

Cart::all()

Of course you also want to get the all items in cart. This is where you'll use the all method. This method will return a Collection of Cart Items.

Cart::all();

Cart::flush()

If you want to completely delete the all items of a cart, you can call the flush method on the cart. This will delete all Cart Items from the cart for the current cart instance.

Cart::flush();

Cart::totalPrice()

The totalPrice() method can be used to get the totalPrice of all items in the cart.

Cart::totalPrice();

Example

Below is a little example of how to list the cart content in a table:

// Add some items in your Controller.
$product=Product::find(1);
Cart::put(['quantity'=>1,'price'=>9.99],$product);
$product=Product::find(2);
Cart::put(['quantity'=>2,'price'=>10],$product);
// Display the content in a View.
<table>
   	<thead>
       	<tr>
           	<th>Product</th>
           	<th>quantity</th>
           	<th>Price</th>
        </tr>
   	</thead>
   	<tbody>
   		@foreach(Cart::all() as $row)
       		<tr>
           		<td>
               		<p><strong>{{$row->product->name}}</strong></p>
               	</td>
           		<td><p>{{$row->quantity}}</p></td>
           		<td>${{$row->price}}</td>
       		</tr>
	   	@endforeach
   	</tbody>
   	
   	<tfoot>
   		<tr>
   			<td colspan="2">&nbsp;</td>
   			<td>Total</td>
   			<td>{{Cart::totalPrice()}}</td>
   		</tr>
   	</tfoot>
</table>

laravel-cart's People

Contributors

mohammadv184 avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.