/laravel-starter

A modular CMS like starter project built with Laravel

Primary LanguagePHP

Laravel Starter

Laravel 5.8 based simple starter project to build all type of applications. Almost all the necessary functionalities are added. Continuously working on more features and improvements.

Please let me know your feedback and comments.

Current Build Status

StyleCI

Demo

http://laravel.nasirkhn.com/

Features

  • Admin feature and public views are completely separated as Backend and Frontend.
  • Major feature are developed as Modules. Module like Posts, Comments are separated from the core features like User, Role, Permission

All features

  • User Authentication
  • Social Login
    • Facebook
    • Github
    • Build in a way adding more is much easy now
  • User Profile with Avatar
    • Separate User Profile table
  • Role-Permissions for Users
  • Dynamic Menu System
  • Backend Theme
    • Bootstrap 4, CoreUI
    • Fontawesome 5
  • Frontend Theme
    • Bootstrap 4, Now UI Kit
    • Fontawesome 5
  • Article Module
    • Posts
    • Categories
    • Tags
    • Comments
    • wysiwyg editor
    • file browser
  • Application Settings
  • External Libraries
    • Bootstrap 4
    • Fontawesome 5
    • CoreUI
    • Now UI Kit
    • Datatables
    • Select2
    • Date Time Picker
  • Backup (Source, Files, Database as Zip)
  • Log Viewer
  • Newsletter
  • Notification
    • Dashboard and details view

Installation

Follow the steps mentioned below to install and run the project.

  1. Clone or download the repository
  2. Go to the project directory and run composer install
  3. Create .env file by copying the .env.example. You may use the command to to that cp .env.example .env
  4. Update the database name and credentials
  5. Run the command php artisan migrate -seed
  6. You may create a virtualhost entry to access the application or run php artisan serve and visit http://127.0.0.1:8000

Set Module Permissions

  1. Set Permissions for Posts, Categories, Tags: php artisan article:create-permissions
  2. Set Permissions for Newsletter: php artisan newsletter:create-permissions

After creating the new permissions use the following commands to update cashed permissions.

php artisan cache:forget spatie.permission.cache

Seed Sample Data (Optional & should use only on testing)

  1. Add sample data on Posts, Categories, Tags with the following command php artisan article:create-sample-data
  2. Add sample data on Newsletter with the following command php artisan newsletter:create-sample-data

Screenshots

Home Page

Laravel Starter Home

Login Page

Laravel Starter Login

Backend Dashboard

Backend Dashboard