Top Quality Products

GetFund – A Professional Laravel Crowdfunding Platform

4.91
Expert ScoreRead review

$99.00

Added to wishlistRemoved from wishlist 0
Add to compare

414 sales

LIVE PREVIEW

GetFund – A Professional Laravel Crowdfunding Platform

Product Review: GetFund

Introduction

GetFund is a cutting-edge crowdfounding platform that offers a comprehensive solution for those looking to raise funds for their creative projects, charities, or business ideas. With its user-friendly interface and robust features, this platform makes it easy to create and manage crowdfunding campaigns. In this review, we’ll take a deeper dive into the features and benefits of GetFund to help you decide if this is the right platform for your crowdfunding needs.

Key Features

GetFund offers a wide range of features that make it easy to create and manage campaigns. Some of the standout features include:

  • Intuitive interface for creating campaigns
  • Support for different payment gateways, including Stripe and PayPal
  • Ability to set deadlines and milestones
  • Reward options
  • Campaign end method (e.g., auto-expiration, manual expiration, etc.)
  • Social share and social login options

User Experience

In our experience, the interface of GetFund is smooth and user-friendly. Navigation is straightforward, and each feature is well-explained and easy to navigate. Campaign creation is an intuitive process, and campaigners can easily set up rewards, payment gateways, and other campaign details with a few clicks.

Strengths

  • Robust features set
  • Comprehensive support for different payment gateways
  • User-friendly interface
  • Ability to set deadlines and milestones for campaigns
  • Reward and campaign end method options are a plus

Weaknesses

  • Pricing information is not readily available
  • Limited information is provided on the platform’s security and trust features (although they do mention two-factor authentication)

Server Requirements

GetFund can be run on a host of server configurations, which are as follows:

  • PHP 8.1 or later
  • Support for Ctype, Curl, DOM, Fileinfo, Filter, Hash, Mbstring, OpenSSL, PCRE, PDO, Session, Tokenizer, and XML PHP extensions.

Changelog

A changelog is provided in the product description, documenting updates, bug fixes, and feature additions. Versions 1.0 – 6.0, highlighting the changes made to date.

Conclusion

Score: 4.91

GetFund has impressed us with its strong feature set, user-friendly interface, and robust design. The platform offers users a range of options, including multiple payment gateways, rewards, and campaign end methods, making it a solid contender in the crowdfunning space. While there could be improvements made to documentation and security, GetFund is an excellent choice for those looking to create engaging and successful crowdfunding campaigns.

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “GetFund – A Professional Laravel Crowdfunding Platform”

Your email address will not be published. Required fields are marked *

Introduction

GetFund is a professional Laravel crowdfunding platform that allows you to create a crowdfunding website with ease. It's a robust and feature-rich platform that comes with a user-friendly interface, making it perfect for both beginners and experienced developers. With GetFund, you can create a fully functional crowdfunding website in no time, without having to write a single line of code.

In this tutorial, we'll take you through a step-by-step guide on how to use GetFund to create a crowdfunding website. We'll cover everything from installation to customization, so you can get started with your own crowdfunding platform right away.

Prerequisites

Before we begin, make sure you have the following:

  • A basic understanding of Laravel and PHP
  • A web server (such as Apache or Nginx) and a database management system (such as MySQL)
  • Composer installed on your system
  • A code editor or IDE of your choice

Installing GetFund

To install GetFund, follow these steps:

  1. Open a terminal or command prompt and navigate to the directory where you want to install GetFund.
  2. Run the following command to create a new Laravel project: composer create-project --prefer-dist laravel/laravel getfund
  3. Navigate into the project directory: cd getfund
  4. Run the following command to install GetFund: composer require getfund/getfund
  5. Run the following command to install the dependencies: composer install
  6. Run the following command to migrate the database: php artisan migrate
  7. Run the following command to seed the database: php artisan db:seed

Step 1: Setting Up the Basics

Once you've installed GetFund, let's set up the basics:

  1. Open the config/app.php file and update the APP_NAME to your desired name.
  2. Open the config/database.php file and update the database settings to match your local environment.
  3. Run the following command to create a new admin user: php artisan getfund:make-admin

Step 2: Creating a New Campaign

To create a new campaign, follow these steps:

  1. Log in to the admin dashboard with the credentials you created earlier.
  2. Click on the "Campaigns" tab and then click on the "Create Campaign" button.
  3. Fill in the campaign details, such as title, description, and goal amount.
  4. Upload a campaign image and set the start and end dates for the campaign.
  5. Click on the "Create" button to create the campaign.

Step 3: Managing Campaigns

To manage campaigns, follow these steps:

  1. Log in to the admin dashboard and click on the "Campaigns" tab.
  2. You can view a list of all campaigns, including their status, goal amount, and funding progress.
  3. You can also edit or delete campaigns from this page.

Step 4: Managing Donations

To manage donations, follow these steps:

  1. Log in to the admin dashboard and click on the "Donations" tab.
  2. You can view a list of all donations, including the donor's name, email, and donation amount.
  3. You can also view the donation history for each campaign.

Step 5: Customizing GetFund

To customize GetFund, follow these steps:

  1. Open the config/getfund.php file and update the settings to match your desired behavior.
  2. You can also override the default views and templates by creating new files in the resources/views/getfund directory.

Conclusion

And that's it! With these steps, you should now have a fully functional crowdfunding website using GetFund. Remember to customize GetFund to fit your specific needs and to keep your website up-to-date with the latest security patches and updates.

In the next part of this tutorial, we'll cover more advanced topics, such as integration with payment gateways and email marketing tools.

Here is an example of a complete settings configuration for GetFund - A Professional Laravel Crowdfunding Platform:

Database Settings

By default, GetFund uses Laravel's built-in Eloquent ORM to interact with the database. To configure the database settings, create a new file named .env in the root of your project and update the following settings:

DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=getfund DB_USERNAME=root DB_PASSWORD=password

GetFund Settings

In the config/getfund.php file, you can configure various settings related to GetFund. Some important settings include:

min_donation_amount = 5 // Minimum donation amount (in cents) max_donation_amount = 10000 // Maximum donation amount (in cents) default_donation_currency = USD // Default donation currency

Payment Gateway Settings

To configure payment gateways, create a new file named payment_gateways.php in the config directory. You can add the following code to configure Stripe as the default payment gateway:

<?php

return [
    'gateways' => [
        'stripe' => [
            'secret_key' => 'your_stripe_secret_key',
            'publishable_key' => 'your_stripe_publishable_key',
        ],
    ],
    'default_gateway' => 'stripe',
];

Replace your_stripe_secret_key and your_stripe_publishable_key with your actual Stripe API keys.

Notification Settings

To configure email notifications, create a new file named notifications.php in the config directory. You can add the following code to configure the default notification settings:

<?php

return [
    'from_email' => 'your_email@example.com',
    'from_name' => 'Your Name',
    'smtp' => [
        'host' => 'smtp.gmail.com',
        'port' => 587,
        'username' => 'your_email@example.com',
        'password' => 'your_password',
        'encryption' => 'tls',
    ],
];

Replace your_email@example.com, your_password, and your_name with your actual email settings.

Other Settings

Additional settings can be configured in the config/app.php file. For example, you can update the timezone setting:

timezone => 'America/New_York'

Remember to update the config.php file to reflect the correct path to your Laravel installation.

Add all featured about this GetFund - A Professional Laravel Crowdfunding Platform, and you can extract more information from this content

GetFund is an innovative crowdfunding application that empowers users to create and manage crowdfunding campaigns with ease. Whether you have a creative project, a charitable cause, or a business idea, GetFund provides a platform for you to share your story, gather support from the community, and raise funds to bring your dreams to life.

With GetFund, creating a crowdfunding campaign is simple and user-friendly. Users can easily create a campaign by providing a compelling description of their project or cause, setting a fundraising goal, and uploading relevant images to showcase their vision.

GetFund offers two types of campaigns, donation-based and reward-based crowdfunding, allowing users to choose the model that best aligns with their funding needs. Campaign creators can also set deadlines and milestones to create a sense of urgency and motivate supporters to contribute.

GetFund prioritizes security and trust, ensuring that all transactions are encrypted and securely processed. Users can contribute to campaigns using various payment methods, including credit cards (Stripe), PayPal, and other popular payment gateways, with peace of mind.

Whether you are a creative individual, a passionate advocate for a cause, or an aspiring entrepreneur, GetFund provides a seamless and efficient way to raise funds and turn your dreams into reality. Join the vibrant community of campaigners and supporters on GetFund and experience the power of crowdfunding like never before!

Need Support?

Support for all our products is conducted through our Support Forum , where you can submit your product related questions, bug-findings, etc.

GetFund - A Professional Laravel Crowdfunding Platform - 1

GetFund - A Professional Laravel Crowdfunding Platform - 2GetFund - A Professional Laravel Crowdfunding Platform - 3

Demo
Login email:
admin@demo.com
Password 123456
Login URL https://demo.themeqx.com/getfund/public/login

GetFund - A Professional Laravel Crowdfunding Platform - 4

Features

  • Latest Laravel v.10.x
  • Bootstrap css
  • Powerfull user friendly admin panel
  • Stripe Payment Gateway
  • PayPal Payment Gateway
  • Bank Transfer Payment Gateway
  • Reward options
  • Campaign end method
  • Social Login
  • Password retrieval module
  • FontAwesome
  • Social Share
  • Secure Password Hashing
  • Unlimited campaigns
  • Staff picks section
  • Recently funded campaigns
  • Currencies changing options
  • Ajax loading campaign in home
  • Payment tracking
  • Rewards tracking
  • Auto campaign end
  • User profile picture
  • SMTP email Support
  • Translation ready
  • SEO friendly url
  • reCAPtCHA everywhere
  • Contact Form
  • Free and continues updates

Satisfied customers says about us

GetFund - A Professional Laravel Crowdfunding Platform - 5

Server Requirements for GetFund Crowdfunding application

  • PHP >= 8.1
  • Ctype PHP Extension
  • cURL PHP Extension
  • DOM PHP Extension
  • Fileinfo PHP Extension
  • Filter PHP Extension
  • Hash PHP Extension
  • Mbstring PHP Extension
  • OpenSSL PHP Extension
  • PCRE PHP Extension
  • PDO PHP Extension
  • Session PHP Extension
  • Tokenizer PHP Extension
  • XML PHP Extension

Change Log

Version {{6.0.0}} [17 April, 2023 ]

1. Laravel 10: We have upgraded GetFund to Laravel 10, which offers better performance, improved security, and new features that enhance the user experience.
2. Improved performance and speed.
3. User interface (UI) and user experience (UX) improvements.
4. Bug fixes to ensure smoother operation of the software.
5. Optimized code for better resource utilization and reduced memory footprint.
6. Refactored models and helper's path
7. Removed development-specific packages

Version 5.2 [26 April, 2020 ]

1. Added: Cookies policy page and cookie constant notification module.

Version 5.1 [21 April, 2020 ]

1. Fixed: a db column issue (total_funded) in campaign table

Version 5.0 [18 April, 2020 ]

1. Updated Laravel Framework to 7.5

Version 4.1.0 [12 January, 2020 ]

1. Fixed email sending issue that required good server
2. Fixed few db column

Version 4.0 [22 September, 2019 ]

1. Updated Laravel to v.6.0
2. Updated stripe SDK to v.7.2
3. Improved Performance 2X
4. Fixed few currency issues
5. Fixed few database column issues

Version 3.0.5 [07 August, 2019 ]

1. Fixed registration mail issue
2. stripe amount issue
3. currency sign issue
4. stripe amount issue during charge

Version 3.0.4 [16 April, 2019 ]

1. Fixed E-Mail issue from version 3.0.3
2. Fixed database file issue during import
3. Fixed other known issues.

Version 3.0.3 [24 March, 2018 ]

1. Fixed : currency sign print issue
2. Fixed few known bugs

Version 3.0.2 [05 March, 2018 ]

1. Added : dedicated url to clear cache (url/clear)
2. Updated core to Laravel 5.7
3. Dropped: Laravel 5.4 support
4. Improved performance
5. Fixed few known bugs

Version 3.0.1 [06 November 2018 ]

1. Fixed a column issue in database

Version 3.0.0 [28 October 2018 ]

1. Updated core framework to Laravel 5.7
2. Included two flavours of laravel version, laravel 5.7 and laravel 5.4, choose one based on your server

Version 2.3.4 [13 August 2018 ]

1. Security Update
2. Changed: Replace summer note by ckEditor
3. Improved: Database query and performance
4. Fixed: stripe amount issue for zero decimal currency
5. Fixes known bugs

Version 2.3.3 [20 May 2018 ]

1. Fixed : Initial App Debug set to false
2. Fixed: Some known bugs
3. Improved: Performance

Version 2.3.2 [11 April 2018 ]

1. Fixed : Several Bug fix
2. Fixed: Default Email SMTP to php mail() function

Version 2.3.1 [04 March 2018 ]

1. Fixed : A Database issue in Import File
2. Fixed: Known Bugs

Version 2.3 [25 February 2018 ]

1. Fixed : Short description issue, when enter large text in short description, it was showing an error [FIXED]

Version 2.2 [28 January 2018]

1. Added : Copy Campaign link features to single campaign page
2. Fixed : known Bug

Version 2.1 [21 January 2018]
1. Fixed : campaign card css issue
2. Fixed : some response issues
3. Fixed : known Bug
4. Removed : Masonry Grid
5. Implemented : Own CSS grid
6. Improved: Performance and reduced database query time

Version 2.0 [17 January 2018]

1. Fixed : a bug after installation, demo url removed when live
2. Fixed : some known issues

Version 1.9 [15 Oct 2017]

1. Added: Social MetaData added
2. Removed: public_path() for getting relative directory for uploading image
3. Removed: negative days count
4. Fixed: bugs and improved performance

Version 1.8 [10 Aug 2017]

1. Fixed: Withdrawal bug.

Version 1.7 [25 July 2017]

1. Added: Withdrawal module has been added, now campaign owner can request for withdrawing after campaign end, with there preferred method like PayPal or Bank transfer.
2. Added: Currency sign placing in the left or right side is now easy with settings > general settings in the dashboard.
3. Fixed: When all demo campaign has been deleted, there an error during login dashboard and payment, (FIXED). reported by: @Garyece
4. Fixed: Few bugs fixed
5. Improved: Performance Improved

Version 1.6 [15 July 2017]

1. Added: Campaign id has been added to bank payment for reference
2. Fix:ed Update a button (Submit new campaign to edit campaign)
3. Updated: Performance improved

Version 1.5 [09 July 2017]

1. Added: Campaign Delete option has been added
2. Added: User module has been added, Admin can delete, edit or block any user from admin panel
3. Added: 404 page has been added. Any wrong URL will show a 404 page with the main theme. so the visitor can go to any page right from this page.

Version 1.4 [03 June 2017]

1. Added: Facebook Opengraph Meta tags
2. Added: Contact Us page that allows receiving users feedback
3. Added reCAPTCHA everywhere, Login page, Contact Us Page, Registration Page
4. Fixed: In Mobile (Android, IOS) campaign image clickable to open campaign page
5. Fixed: If there is no Staff Picked Campaign, This section will be hidden
6. Fixed: Some translatable strings
7. Improved: Performance

Version 1.3 [24 May 2017]

1. Fixed: Delete Category Bug, reported by: Ade Adwitya

Version 1.2 [23 May 2017]

1. Added: A Simple Stat and Counter About Campaigns, Users and Raised Money
2. Fixed: A URL issue in homepage campaign thumbnail h4, reported by: Ade Adwitya
3. Fixed: A Stripe Payment Credential gettings live_secret_key in helper function
4. Improved: Performance.

Version 1.1 [2 May 2017]

1. Added: Bank Transfer Payment Gateway
2. Fixed: Few Bugs
3. Improved: Performance improve, reduced database query

Version 1.0 [19 April 2017]
Initial Release
. Each featured in different line.
GetFund – A Professional Laravel Crowdfunding Platform
GetFund – A Professional Laravel Crowdfunding Platform

$99.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0