/MemberClub

Basic CRM Application with Laravel Framework

Primary LanguagePHP

Simple Club Membership Application

A Simple CLub Membership Application developed with Laravel PHP Framework.

Installation

  • Clone github repo
git clone https://github.com/MisterMike/MemberClub.git
  • Optionally you can change the name of the folder:
git clone https://github.com/MisterMike/MemberClub.git club-membership
  • Go to the newly created folder which was 'club-membership' in the above example
cd club-membership
  • Make both the storage and the bootstrap/cache directories writable by Apache (or Nginx).
sudo chmod -R o+rw storage
sudo chmod -R o+rw bootstrap/cache
  • Install node packages by npm (This step is only necessary if you are planning to make further developments in this app.)
npm install
  • Run composer
composer install --optimize-autoloader --no-dev
  • Create .env file by copying the default env file
cp .env.example .env
  • Generate application key (Laravel will not run without this unique key)
php artisan key:generate
  • Open .env file and edit necessary config based on the server/virtual machine you use to run it
nano .env
  • Add symbolic links in order to make storage files viewable for public.
php artisan storage:link
  • As a best practice, you might want to run the following command for performance.
php artisan config:cache
  • Create a MySQL database and enter the credentials into the .env file.

  • Now it is time to migrate our database tables. Use Laravel migrate command.

php artisan migrate:install
php artisan migrate
  • Now let's add some mockup data. There are already factory and seed files in this Laravel application so the only thing you need to do is to run those:
php artisan db:seed
  • This command will create 10 memberships and 10 members for each membership as well as 2 app users, one being an adminstrator.

  • As mentioned above, seed command creates 2 users as follows:

  • Now you can go to your url and login to the system by using the credentials above.

Additional Features

  • This App provides Restful API endpoints for memberships and members. Every user has an API token by default. Using API tokens, one can get to use APIs with several ways as below by using Guzzle HTTP library.

    • Query String
    $response = $client->request('GET', '/api/memberships?api_token='.$token);
    • Request Payload
    $response = $client->request('POST', '/api/memberships', [
        'headers' => [
            'Accept' => 'application/json',
        ],
        'form_params' => [
            'api_token' => $token,
        ],
    ]);
    • Bearer Token
    $response = $client->request('POST', '/api/mnemberships', [
        'headers' => [
            'Authorization' => 'Bearer '.$token,
            'Accept' => 'application/json',
        ],
    ]);
  • Club Membership App has multi language support. Currently English and German have translations for dashboard. If you need more you are welcome to edit language files.