Plugins
Ecommerce Builder
Build your own ecommerce store with FilamentPHP with the Power of Tomato CMS Builder
Developer Tool
Dark theme support
Yes
Multi language support
Yes
Compatible with the latest version
Supported versions: 3.x
Documentation

Screenshot

Latest Stable Version License Downloads

Build your own ecommerce store with FilamentPHP with the Power of Tomato CMS Builder

#Installation

composer require tomatophp/filament-ecommerce

we need the Media Library plugin to be installed and migrated you can use this command to publish the migration

php artisan vendor:publish --provider="Spatie\MediaLibrary\MediaLibraryServiceProvider" --tag="medialibrary-migrations"

now you need to install the settings hub use these commands

php artisan vendor:publish --provider="Spatie\LaravelSettings\LaravelSettingsServiceProvider" --tag="migrations"
php artisan filament-settings-hub:install

then you need to publish the account model

php artisan vendor:publish --tag="filament-accounts-model"

after installing your package please run this command

php artisan filament-ecommerce:install

finally register the plugin on /app/Providers/Filament/AdminPanelProvider.php

->plugin(\TomatoPHP\FilamentEcommerce\FilamentEcommercePlugin::make())

#Features

  • [x] Multi Company / Branches Management
  • [x] Product Management
  • [x] Product Table Group By Type
  • [x] Product Multi Variants
  • [x] Product Multi Images
  • [x] Product Multi Languages Content
  • [x] Shipping Vendor Management
  • [x] Order Management
  • [x] Order Logs
  • [x] Order Shipping Action
  • [x] Order Change Status Action
  • [x] Order Table Group By Status
  • [x] Order Receipt Print
  • [x] Order Table Summary
  • [x] Order Settings
  • [x] Order Export
  • [x] Order Import
  • [x] Order Charts Widgets
  • [x] Coupon Management
  • [x] Gift Card Management
  • [x] Refferal Management
  • [x] Coupons Service Class
  • [x] Add Discount To Order Using Coupon
  • [ ] Product Variants On Order
  • [ ] Gitf Card Services
  • [ ] Gift Card Apply To Account Wallet
  • [ ] Pay Order With Wallet
  • [ ] Pay Order With Gift Card
  • [ ] Refferal Code Services
  • [ ] Refferal Code Middleware Counter
  • [ ] Order PDF Export
  • [ ] Order Facade Methods
  • [ ] Order Tracking Page
  • [ ] Product Import
  • [ ] Product Export
  • [ ] Product Clone
  • [ ] Cart Manager
  • [ ] Comparison Between Products
  • [ ] Wishlist Manager
  • [ ] Product Download for Digital Products
  • [ ] Search History Manager
  • [ ] Filament CMS Page Builder Integration
  • [ ] Filament CMS Themes Integration
  • [ ] Product Service Class
  • [ ] Ecommerce Service Class
  • [ ] Ecommerce APIs

#Screenshots

Branches Companies Edit Company Products List Create Product Create Order Order Items Orders List Deliveries Edit Shipping Shipping

#Use Coupon Service

you can use coupon service to check if coupon is valid or not

you can use this method to check for selected Order

use \TomatoPHP\FilamentEcommerce\Facades\FilamentEcommerce;
 
FilamentEcommerce::coupon()->check('coupon_code', \TomatoPHP\FilamentEcommerce\Models\Order::find(1));

or you can check the code for selected products

use \TomatoPHP\FilamentEcommerce\Facades\FilamentEcommerce;
 
FilamentEcommerce::coupon()->products([1,2,4])->check('coupon_code');

or you can get the direct discount amount of the code

use \TomatoPHP\FilamentEcommerce\Facades\FilamentEcommerce;
 
FilamentEcommerce::coupon()->products([1,2,4])->discount('coupon_code');

and it's the same as check you can apply to selected order or selected products.

#Publish Assets

you can publish config file by use this command

php artisan vendor:publish --tag="filament-ecommerce-config"

you can publish views file by use this command

php artisan vendor:publish --tag="filament-ecommerce-views"

you can publish languages file by use this command

php artisan vendor:publish --tag="filament-ecommerce-lang"

you can publish migrations file by use this command

php artisan vendor:publish --tag="filament-ecommerce-migrations"

#Other Filament Packages

Checkout our Awesome TomatoPHP

Featured Plugins