• Stars
    star
    146
  • Rank 252,769 (Top 5 %)
  • Language
    PHP
  • License
    MIT License
  • Created over 9 years ago
  • Updated almost 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A powerful open source Laravel Blog with WYSWYG and CRUD (Create Read Update Delete) built on Laravel 5.8 and Bootstrap 4

Larablog

A powerful open source Laravel Blog with WYSWYG and CRUD (Create Read Update Delete) built on Laravel 5.8 and Bootstrap 4

Build Status StyleCI Scrutinizer Code Quality Code Intelligence Status License: MIT

Table of contents

Features

Larablog Features
Built on Laravel 5.8
Built on Bootstrap 4
Front End Built on Start Bootstrap - Clean Blog
Admin Built on Paper Dashboard 2
Uses MySQL Database (can be changed)
Uses Artisan to manage database migration, schema creations, and create/publish page controller templates
Dependencies are managed with COMPOSER
Laravel Scaffolding User and Administrator Authentication.
CRUD (Create, Read, Update, Delete) User Management with Laravel Users Package
CRUD (Create, Read, Update, Delete) Blog Posts
CRUD (Create, Read, Update, Delete) Tags
Built in CKEditor WYSWYG Editor
Google reCaptcha Protection with Google API
Robust File Manager using UniSharp Laravel File Manager Package
Makes us of Laravel Mix to compile assets
Makes use of Language Localization Files
Active Nav states using Laravel Requests
User Roles/ACL Implementation
Admin PHP Information UI using Laravel PHP Info Package
Activity Logging using Laravel-logger
Uses Laravel built in mail services
Automatic sitemap generation with Spatie Laravel Sitemap Package
Automatic RSS Feed generation with Spatie Laravel Feed Package
Uses Laravel Debugbar Package for local debugging
Generate sitemap through the admin panel or the CLI with Artisan.
Front-end bootstrap themes with admin management panel

Installation Instructions

  1. Run git clone https://github.com/jeremykenedy/larablog.git larablog
  2. Create a MySQL database for the project
    • mysql -u root -p, if using Vagrant: mysql -u homestead -psecret
    • create database larablog;
    • \q
  3. From the projects root run cp .env.example .env
  4. Configure your .env file
  5. Run composer install from the projects root folder
  6. From the projects root folder run:
php artisan vendor:publish --tag=laravelroles
  1. From the projects root folder run php artisan key:generate
  2. From the projects root folder run php artisan migrate
  3. From the projects root folder run composer dump-autoload
  4. From the projects root folder run php artisan db:seed
  5. Compile the front end assets with npm steps or yarn steps.

Build the Front End Assets with Mix

Using NPM:
  1. From the projects root folder run npm install
  2. From the projects root folder run npm run dev or npm run production
  • You can watch assets with npm run watch
Using Yarn:
  1. From the projects root folder run yarn install
  2. From the projects root folder run yarn run dev or yarn run production
  • You can watch assets with yarn run watch
And thats it with the caveat of setting up and configuring your development environment. I recommend Laravel Homestead

Seeds

Seeded Roles
Role Level
Unverified Level 0
User Level 1
Writer Level 2
Moderator Level 3
Admin Level 4
Super Admin Level 5
Seeded Permissions
  • view.users
  • create.users
  • edit.users
  • delete.users
  • perms.super-admin
  • perms.admin
  • perms.moderator
  • perms.writer
  • perms.user
Seeded Users
Email Password Access
[email protected] password Super Admin Access
  • Controlled by the .env file.
Themes Seed List

Commands

Generate Site Map

  • You can generate a XML sitemap which is located at /sitemap.xml with the following Artisan Command:

php artisan sitemap:generate or php artisan sitemap:generate {limit}

{limit} is the number of pages that the sitemap generator will limit to generating.

  • The sitemaps default number of pages is controlled by the .env variable BLOG_SITEMAP_LIMIT

Configs

Config File

Here is a list of the custom config files that have been added or modified to the project:

Env Variables

Here is a list of the additonal added .env variables:

INITIAL_SEEDED_SUPER_ADMIN_USERNAME='Admin'
INITIAL_SEEDED_SUPER_ADMIN_USEREMAIL='[email protected]'
INITIAL_SEEDED_SUPER_ADMIN_USERPASSWORD='password'

BLOG_APP_NAME="${APP_NAME}"
BLOG_DEFAULT_TITLE='Lara(b)log2'
BLOG_DEFAULT_SUBTITLE='An open source blog platform'
BLOG_DEFAULT_DESCRIPTION='Larablog 2 is an open source blog built on Laravel'
BLOG_DEFAULT_AUTHOR='Jeremy Kenedy'
BLOG_SITEMAP_LIMIT=100

BLOG_DEFAULT_IMAGE=
BLOG_HOME_IMAGE=
BLOG_AUTHORS_IMAGE=
BLOG_AUTHOR_IMAGE=
BLOG_CONTACT_IMAGE=

BLOG_SM_URL_TWITTER=
BLOG_SM_URL_FACEBOOK=
BLOG_SM_URL_LINKEDIN=
BLOG_SM_URL_GOOGLEPLUS=
BLOG_SM_URL_GITHUB=

BLOG_DISQUSSHORTNAME=null
BLOG_GOOGLEANALYTICSID=null

BLOG_RSS_FEED_URL='/blog.rss'
BLOG_RSS_FEED_TITLE='My Blog feed'

BLOG_DEFAULT_PAGES_PER_PAGE=10
BLOG_DEFAULT_REVERSE_PAGINATION_DIRECTION=false
BLOG_DEFAULT_CONTACT_EMAIL=null
BLOG_UPLOADS_ENVIRONMENT=null
BLOG_UPLOADS_WEBPATH=null

ADMIN_DEFAULT_PAGES_PER_PAGE=100

LARAVEL_LOGGER_ROLES_MIDDLWARE=permission:perms.super.admin
LARAVEL_LOGGER_MIDDLEWARE_ENABLED=true
LARAVEL_LOGGER_USER_MODEL=App\Models\User
LARAVEL_LOGGER_LAYOUT=layouts.admin

# https://www.google.com/recaptcha/admin#list
ENABLE_RECAPTCHA=false
RECAPTCHA_SITE=YOURGOOGLECAPTCHAsitekeyHERE
RECAPTCHA_SECRET=YOURGOOGLECAPTCHAsecretHERE
RECAPTCHA_CDN=https://www.google.com/recaptcha/api.js

Language Files

Routes

+--------+----------------------------------------+---------------------------------------------------+------------------------------+---------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------+
| Domain | Method                                 | URI                                               | Name                         | Action                                                                                            | Middleware                                                                                                               |
+--------+----------------------------------------+---------------------------------------------------+------------------------------+---------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------+
|        | GET|HEAD                               | /                                                 | home                         | App\Http\Controllers\BlogController@index                                                         | web,activity                                                                                                             |
|        | GET|HEAD                               | _debugbar/assets/javascript                       | debugbar.assets.js           | Barryvdh\Debugbar\Controllers\AssetController@js                                                  | Barryvdh\Debugbar\Middleware\DebugbarEnabled                                                                             |
|        | GET|HEAD                               | _debugbar/assets/stylesheets                      | debugbar.assets.css          | Barryvdh\Debugbar\Controllers\AssetController@css                                                 | Barryvdh\Debugbar\Middleware\DebugbarEnabled                                                                             |
|        | DELETE                                 | _debugbar/cache/{key}/{tags?}                     | debugbar.cache.delete        | Barryvdh\Debugbar\Controllers\CacheController@delete                                              | Barryvdh\Debugbar\Middleware\DebugbarEnabled                                                                             |
|        | GET|HEAD                               | _debugbar/clockwork/{id}                          | debugbar.clockwork           | Barryvdh\Debugbar\Controllers\OpenHandlerController@clockwork                                     | Barryvdh\Debugbar\Middleware\DebugbarEnabled                                                                             |
|        | GET|HEAD                               | _debugbar/open                                    | debugbar.openhandler         | Barryvdh\Debugbar\Controllers\OpenHandlerController@handle                                        | Barryvdh\Debugbar\Middleware\DebugbarEnabled                                                                             |
|        | GET|HEAD                               | activity                                          | activity                     | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@showAccessLog             | web,auth,activity                                                                                                        |
|        | DELETE                                 | activity/clear-activity                           | clear-activity               | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@clearActivityLog          | web,auth,activity                                                                                                        |
|        | GET|HEAD                               | activity/cleared                                  | cleared                      | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@showClearedActivityLog    | web,auth,activity                                                                                                        |
|        | GET|HEAD                               | activity/cleared/log/{id}                         |                              | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@showClearedAccessLogEntry | web,auth,activity                                                                                                        |
|        | DELETE                                 | activity/destroy-activity                         | destroy-activity             | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@destroyActivityLog        | web,auth,activity                                                                                                        |
|        | GET|HEAD                               | activity/log/{id}                                 |                              | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@showAccessLogEntry        | web,auth,activity                                                                                                        |
|        | POST                                   | activity/restore-log                              | restore-activity             | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@restoreClearedActivityLog | web,auth,activity                                                                                                        |
|        | GET|HEAD                               | admin                                             | admin                        | App\Http\Controllers\Admin\AdminController@index                                                  | web,auth,permission:perms.user,activity                                                                                  |
|        | GET|HEAD                               | admin/filemanager                                 | unisharp.lfm.show            | UniSharp\LaravelFilemanager\Controllers\LfmController@show                                        | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/crop                            | unisharp.lfm.getCrop         | UniSharp\LaravelFilemanager\Controllers\CropController@getCrop                                    | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/cropimage                       | unisharp.lfm.getCropimage    | UniSharp\LaravelFilemanager\Controllers\CropController@getCropimage                               | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/cropnewimage                    | unisharp.lfm.getCropimage    | UniSharp\LaravelFilemanager\Controllers\CropController@getNewCropimage                            | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/delete                          | unisharp.lfm.getDelete       | UniSharp\LaravelFilemanager\Controllers\DeleteController@getDelete                                | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/deletefolder                    | unisharp.lfm.getDeletefolder | UniSharp\LaravelFilemanager\Controllers\FolderController@getDeletefolder                          | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/doresize                        | unisharp.lfm.performResize   | UniSharp\LaravelFilemanager\Controllers\ResizeController@performResize                            | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/download                        | unisharp.lfm.getDownload     | UniSharp\LaravelFilemanager\Controllers\DownloadController@getDownload                            | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/errors                          | unisharp.lfm.getErrors       | UniSharp\LaravelFilemanager\Controllers\LfmController@getErrors                                   | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/files/{base_path}/{file_name}   | unisharp.lfm.                | UniSharp\LaravelFilemanager\Controllers\RedirectController@getFile                                |                                                                                                                          |
|        | GET|HEAD                               | admin/filemanager/folders                         | unisharp.lfm.getFolders      | UniSharp\LaravelFilemanager\Controllers\FolderController@getFolders                               | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/jsonitems                       | unisharp.lfm.getItems        | UniSharp\LaravelFilemanager\Controllers\ItemsController@getItems                                  | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/newfolder                       | unisharp.lfm.getAddfolder    | UniSharp\LaravelFilemanager\Controllers\FolderController@getAddfolder                             | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/photos/{base_path}/{image_name} | unisharp.lfm.                | UniSharp\LaravelFilemanager\Controllers\RedirectController@getImage                               |                                                                                                                          |
|        | GET|HEAD                               | admin/filemanager/rename                          | unisharp.lfm.getRename       | UniSharp\LaravelFilemanager\Controllers\RenameController@getRename                                | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD                               | admin/filemanager/resize                          | unisharp.lfm.getResize       | UniSharp\LaravelFilemanager\Controllers\ResizeController@getResize                                | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | GET|HEAD|POST|PUT|PATCH|DELETE|OPTIONS | admin/filemanager/upload                          | unisharp.lfm.upload          | UniSharp\LaravelFilemanager\Controllers\UploadController@upload                                   | web,auth,\UniSharp\LaravelFilemanager\Middlewares\MultiUser,\UniSharp\LaravelFilemanager\Middlewares\CreateDefaultFolder |
|        | POST                                   | admin/generate-sitemap                            | generate-sitemap             | App\Http\Controllers\Admin\AdminController@generateSitemap                                        | web,auth,permission:perms.user,activity                                                                                  |
|        | GET|HEAD                               | admin/posts                                       | admin.posts                  | App\Http\Controllers\Admin\PostController@index                                                   | web,auth,permission:perms.writer,activity                                                                                |
|        | POST                                   | admin/posts                                       | storepost                    | App\Http\Controllers\Admin\PostController@store                                                   | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/posts/create                                | posts.create                 | App\Http\Controllers\Admin\PostController@create                                                  | web,auth,permission:perms.writer,activity                                                                                |
|        | DELETE                                 | admin/posts/{post}                                | destroypost                  | App\Http\Controllers\Admin\PostController@destroy                                                 | web,auth,permission:perms.writer,activity                                                                                |
|        | PUT|PATCH                              | admin/posts/{post}                                | updatepost                   | App\Http\Controllers\Admin\PostController@update                                                  | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/posts/{post}/edit                           | editpost                     | App\Http\Controllers\Admin\PostController@edit                                                    | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/sitemap                                     | sitemap-admin                | App\Http\Controllers\Admin\AdminController@sitemap                                                | web,auth,permission:perms.user,activity                                                                                  |
|        | POST                                   | admin/tags                                        | storetag                     | App\Http\Controllers\Admin\TagController@store                                                    | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/tags                                        | showtags                     | App\Http\Controllers\Admin\TagController@index                                                    | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/tags/create                                 | createtag                    | App\Http\Controllers\Admin\TagController@create                                                   | web,auth,permission:perms.writer,activity                                                                                |
|        | PUT|PATCH                              | admin/tags/{tag}                                  | updatetag                    | App\Http\Controllers\Admin\TagController@update                                                   | web,auth,permission:perms.writer,activity                                                                                |
|        | DELETE                                 | admin/tags/{tag}                                  | destroytag                   | App\Http\Controllers\Admin\TagController@destroy                                                  | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/tags/{tag}/edit                             | edittag                      | App\Http\Controllers\Admin\TagController@edit                                                     | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/themes                                      | themes                       | App\Http\Controllers\Admin\ThemesManagementController@index                                       | web,auth,permission:perms.writer,activity                                                                                |
|        | POST                                   | admin/themes                                      | storetheme                   | App\Http\Controllers\Admin\ThemesManagementController@store                                       | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/themes/create                               | createtheme                  | App\Http\Controllers\Admin\ThemesManagementController@create                                      | web,auth,permission:perms.writer,activity                                                                                |
|        | PUT|PATCH                              | admin/themes/{theme}                              | updatetheme                  | App\Http\Controllers\Admin\ThemesManagementController@update                                      | web,auth,permission:perms.writer,activity                                                                                |
|        | DELETE                                 | admin/themes/{theme}                              | destroytheme                 | App\Http\Controllers\Admin\ThemesManagementController@destroy                                     | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/themes/{theme}                              | showtheme                    | App\Http\Controllers\Admin\ThemesManagementController@show                                        | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/themes/{theme}/edit                         | edittheme                    | App\Http\Controllers\Admin\ThemesManagementController@edit                                        | web,auth,permission:perms.writer,activity                                                                                |
|        | POST                                   | admin/update-blog-theme                           | update-blog-theme            | App\Http\Controllers\Admin\ThemesManagementController@updateDefaultTheme                          | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | admin/uploads                                     | admin-uploads                | App\Http\Controllers\Admin\AdminController@uploads                                                | web,auth,permission:perms.writer,activity                                                                                |
|        | GET|HEAD                               | api                                               | api                          | App\Http\Controllers\Api\BlogController@index                                                     | api                                                                                                                      |
|        | GET|HEAD                               | api/posts                                         | api-posts                    | App\Http\Controllers\Api\BlogController@posts                                                     | api                                                                                                                      |
|        | GET|HEAD                               | api/posts/all                                     | api-all-posts                | App\Http\Controllers\Api\BlogController@allPosts                                                  | api                                                                                                                      |
|        | GET|HEAD                               | api/posts/author/{author}                         | api-posts-by-author          | App\Http\Controllers\Api\BlogController@getPostsByAuthor                                          | api                                                                                                                      |
|        | GET|HEAD                               | api/posts/authors                                 | api-posts-authors            | App\Http\Controllers\Api\BlogController@getPostsAuthors                                           | api                                                                                                                      |
|        | GET|HEAD                               | api/posts/latest                                  | api-latest-post              | App\Http\Controllers\Api\BlogController@latestPost                                                | api                                                                                                                      |
|        | GET|HEAD                               | author/{author}                                   | author                       | App\Http\Controllers\BlogController@author                                                        | web,activity                                                                                                             |
|        | GET|HEAD                               | authors                                           | authors                      | App\Http\Controllers\BlogController@authors                                                       | web,activity                                                                                                             |
|        | GET|HEAD                               | blog.rss                                          | feeds.blog                   | Spatie\Feed\Http\FeedController                                                                   | web,activity                                                                                                             |
|        | POST                                   | contact                                           | contactSend                  | App\Http\Controllers\ContactController@contactSend                                                | web,activity                                                                                                             |
|        | GET|HEAD                               | contact                                           | contact                      | App\Http\Controllers\ContactController@index                                                      | web,activity                                                                                                             |
|        | POST                                   | login                                             |                              | App\Http\Controllers\Auth\LoginController@login                                                   | web,activity,guest                                                                                                       |
|        | GET|HEAD                               | login                                             | login                        | App\Http\Controllers\Auth\LoginController@showLoginForm                                           | web,activity,guest                                                                                                       |
|        | POST                                   | logout                                            | logout                       | App\Http\Controllers\Auth\LoginController@logout                                                  | web,activity                                                                                                             |
|        | POST                                   | password/email                                    | password.email               | App\Http\Controllers\Auth\ForgotPasswordController@sendResetLinkEmail                             | web,activity,guest                                                                                                       |
|        | POST                                   | password/reset                                    | password.update              | App\Http\Controllers\Auth\ResetPasswordController@reset                                           | web,activity,guest                                                                                                       |
|        | GET|HEAD                               | password/reset                                    | password.request             | App\Http\Controllers\Auth\ForgotPasswordController@showLinkRequestForm                            | web,activity,guest                                                                                                       |
|        | GET|HEAD                               | password/reset/{token}                            | password.reset               | App\Http\Controllers\Auth\ResetPasswordController@showResetForm                                   | web,activity,guest                                                                                                       |
|        | GET|HEAD                               | phpinfo                                           | laravelPhpInfo::phpinfo      | jeremykenedy\LaravelPhpInfo\App\Http\Controllers\LaravelPhpInfoController@phpinfo                 | web,auth,permission:perms.super.admin                                                                                    |
|        | GET|HEAD                               | register                                          | register                     | App\Http\Controllers\Auth\RegisterController@showRegistrationForm                                 | web,activity,guest                                                                                                       |
|        | POST                                   | register                                          |                              | App\Http\Controllers\Auth\RegisterController@register                                             | web,activity,guest                                                                                                       |
|        | POST                                   | search-users                                      | search-users                 | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@search                   | web,auth,permission:perms.super.admin                                                                                    |
|        | POST                                   | users                                             | users.store                  | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@store                    | web,auth,permission:perms.super.admin                                                                                    |
|        | GET|HEAD                               | users                                             | users                        | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@index                    | web,auth,permission:perms.super.admin                                                                                    |
|        | GET|HEAD                               | users/create                                      | users.create                 | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@create                   | web,auth,permission:perms.super.admin                                                                                    |
|        | DELETE                                 | users/{user}                                      | user.destroy                 | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@destroy                  | web,auth,permission:perms.super.admin                                                                                    |
|        | PUT|PATCH                              | users/{user}                                      | users.update                 | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@update                   | web,auth,permission:perms.super.admin                                                                                    |
|        | GET|HEAD                               | users/{user}                                      | users.show                   | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@show                     | web,auth,permission:perms.super.admin                                                                                    |
|        | GET|HEAD                               | users/{user}/edit                                 | users.edit                   | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@edit                     | web,auth,permission:perms.super.admin                                                                                    |
|        | GET|HEAD                               | {slug}                                            |                              | App\Http\Controllers\BlogController@showPost                                                      | web,activity                                                                                                             |
+--------+----------------------------------------+---------------------------------------------------+------------------------------+---------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------+

Screenshots

LaraBlog LaraBlog Post LaraBlog Post Comments LaraBlog Tags LaraBlog Author LaraBlog Authors LaraBlog Contact LaraBlog Admin Dashboard LaraBlog Admin Posts LaraBlog Admin Post Create LaraBlog Admin Post Edit LaraBlog Admin Tags LaraBlog Admin Tag Edit LaraBlog Admin Files LaraBlog Admin File Manager Pop Up LaraBlog Admin Upload LaraBlog Admin Users LaraBlog Admin User LaraBlog Admin User Edit LaraBlog Admin Sitemap LaraBlog Admin PHP Info LaraBlog Admin Activity LaraBlog Admin Themes LaraBlog Admin Theme Edit LaraBlog Admin Theme Add LaraBlog Admin Theme Example

File Tree

Larablog
β”œβ”€β”€ .editorconfig
β”œβ”€β”€ .env.example
β”œβ”€β”€ .env.travis
β”œβ”€β”€ .gitattributes
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .travis.yml
β”œβ”€β”€ LICENSE
β”œβ”€β”€ README.md
β”œβ”€β”€ app
β”‚Β Β  β”œβ”€β”€ Console
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Commands
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── GenerateSitemap.php
β”‚Β Β  β”‚Β Β  └── Kernel.php
β”‚Β Β  β”œβ”€β”€ Exceptions
β”‚Β Β  β”‚Β Β  └── Handler.php
β”‚Β Β  β”œβ”€β”€ Handlers
β”‚Β Β  β”‚Β Β  └── LfmConfigHandler.php
β”‚Β Β  β”œβ”€β”€ Http
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Controllers
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Admin
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AdminController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PostController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ TagController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── ThemesManagementController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Api
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── BlogController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Auth
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ForgotPasswordController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ LoginController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RegisterController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ResetPasswordController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── VerificationController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ BlogController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ContactController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Controller.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── HomeController.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Kernel.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Middleware
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Authenticate.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ CheckForMaintenanceMode.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ EncryptCookies.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RedirectIfAuthenticated.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ TrimStrings.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ TrustProxies.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── VerifyCsrfToken.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Requests
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ContactRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ DeleteThemeRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ DestroyPostRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ DestroyTagRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ GenerateSitemapRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ StorePostRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ StoreTagRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ StoreThemeRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ThemeRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ UpdatePostRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ UpdateTagRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── UpdateThemeRequest.php
β”‚Β Β  β”‚Β Β  └── ViewComposers
β”‚Β Β  β”‚Β Β      └── BlogSettingsComposer.php
β”‚Β Β  β”œβ”€β”€ Logic
β”‚Β Β  β”‚Β Β  └── helpers.php
β”‚Β Β  β”œβ”€β”€ Mail
β”‚Β Β  β”‚Β Β  └── ContactMail.php
β”‚Β Β  β”œβ”€β”€ Models
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ BlogSetting.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Post.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Tag.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Theme.php
β”‚Β Β  β”‚Β Β  └── User.php
β”‚Β Β  β”œβ”€β”€ Providers
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AuthServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ BroadcastServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ComposerServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ EventServiceProvider.php
β”‚Β Β  β”‚Β Β  └── RouteServiceProvider.php
β”‚Β Β  β”œβ”€β”€ Services
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ BlogThemeServices.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Markdowner.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PostAuthors.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PostFormFields.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PostProcesses.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PostTemplates.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ SitemapCrawlProfile.php
β”‚Β Β  β”‚Β Β  └── TagFormFields.php
β”‚Β Β  └── Traits
β”‚Β Β      └── CaptchaTrait.php
β”œβ”€β”€ artisan
β”œβ”€β”€ bootstrap
β”‚Β Β  β”œβ”€β”€ app.php
β”‚Β Β  └── cache
β”‚Β Β      β”œβ”€β”€ .gitignore
β”‚Β Β      β”œβ”€β”€ packages.php
β”‚Β Β      └── services.php
β”œβ”€β”€ composer.json
β”œβ”€β”€ composer.lock
β”œβ”€β”€ config
β”‚Β Β  β”œβ”€β”€ admin.php
β”‚Β Β  β”œβ”€β”€ app.php
β”‚Β Β  β”œβ”€β”€ auth.php
β”‚Β Β  β”œβ”€β”€ blog.php
β”‚Β Β  β”œβ”€β”€ broadcasting.php
β”‚Β Β  β”œβ”€β”€ cache.php
β”‚Β Β  β”œβ”€β”€ database.php
β”‚Β Β  β”œβ”€β”€ debug-server.php
β”‚Β Β  β”œβ”€β”€ debugbar.php
β”‚Β Β  β”œβ”€β”€ feed.php
β”‚Β Β  β”œβ”€β”€ filesystems.php
β”‚Β Β  β”œβ”€β”€ hashing.php
β”‚Β Β  β”œβ”€β”€ image.php
β”‚Β Β  β”œβ”€β”€ laravel-logger.php
β”‚Β Β  β”œβ”€β”€ laravelPhpInfo.php
β”‚Β Β  β”œβ”€β”€ laravelusers.php
β”‚Β Β  β”œβ”€β”€ lfm.php
β”‚Β Β  β”œβ”€β”€ logging.php
β”‚Β Β  β”œβ”€β”€ mail.php
β”‚Β Β  β”œβ”€β”€ queue.php
β”‚Β Β  β”œβ”€β”€ roles.php
β”‚Β Β  β”œβ”€β”€ services.php
β”‚Β Β  β”œβ”€β”€ session.php
β”‚Β Β  β”œβ”€β”€ sitemap.php
β”‚Β Β  β”œβ”€β”€ superadmin.php
β”‚Β Β  β”œβ”€β”€ tinker.php
β”‚Β Β  β”œβ”€β”€ trustedproxy.php
β”‚Β Β  └── view.php
β”œβ”€β”€ database
β”‚Β Β  β”œβ”€β”€ .gitignore
β”‚Β Β  β”œβ”€β”€ factories
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PostFactory.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ TagFactory.php
β”‚Β Β  β”‚Β Β  └── UserFactory.php
β”‚Β Β  β”œβ”€β”€ migrations
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2014_10_12_000000_create_users_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2014_10_12_100000_create_password_resets_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_15_105324_create_roles_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_15_114412_create_role_user_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_26_115212_create_permissions_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_26_115523_create_permission_role_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_02_09_132439_create_permission_user_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2018_10_10_070913_create_posts_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2018_10_10_070928_create_tags_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2018_10_10_070949_create_post_tag_pivot_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2018_10_28_070857_create_themes_table.php
β”‚Β Β  β”‚Β Β  └── 2018_10_29_042545_create_blog_settings_table.php
β”‚Β Β  └── seeds
β”‚Β Β      β”œβ”€β”€ BlogSettingsTableSeeder.php
β”‚Β Β      β”œβ”€β”€ ConnectRelationshipsSeeder.php
β”‚Β Β      β”œβ”€β”€ DatabaseSeeder.php
β”‚Β Β      β”œβ”€β”€ PermissionsTableSeeder.php
β”‚Β Β      β”œβ”€β”€ PostTableSeeder.php
β”‚Β Β      β”œβ”€β”€ RolesTableSeeder.php
β”‚Β Β      β”œβ”€β”€ TagTableSeeder.php
β”‚Β Β      β”œβ”€β”€ ThemesTableSeeder.php
β”‚Β Β      └── UsersTableSeeder.php
β”œβ”€β”€ package.json
β”œβ”€β”€ phpunit.xml
β”œβ”€β”€ public
β”‚Β Β  β”œβ”€β”€ .htaccess
β”‚Β Β  β”œβ”€β”€ css
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ admin.css
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.css
β”‚Β Β  β”‚Β Β  └── bs3-modals.css
β”‚Β Β  β”œβ”€β”€ favicon.ico
β”‚Β Β  β”œβ”€β”€ fonts
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ font-awesome
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-brands-400.eot
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-brands-400.svg
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-brands-400.ttf
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-brands-400.woff
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-brands-400.woff2
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-regular-400.eot
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-regular-400.svg
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-regular-400.ttf
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-regular-400.woff
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-regular-400.woff2
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-solid-900.eot
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-solid-900.svg
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-solid-900.ttf
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fa-solid-900.woff
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── fa-solid-900.woff2
β”‚Β Β  β”‚Β Β  └── nucleo
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ nucleo-icons.eot
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ nucleo-icons.ttf
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ nucleo-icons.woff
β”‚Β Β  β”‚Β Β      └── nucleo-icons.woff2
β”‚Β Β  β”œβ”€β”€ images
β”‚Β Β  β”œβ”€β”€ index.php
β”‚Β Β  β”œβ”€β”€ js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ admin.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.js
β”‚Β Β  β”‚Β Β  └── jquery.dataTables.min.js
β”‚Β Β  β”œβ”€β”€ mix-manifest.json
β”‚Β Β  β”œβ”€β”€ photos
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 1
β”‚Β Β  β”‚Β Β  └── shares
β”‚Β Β  β”œβ”€β”€ robots.txt
β”‚Β Β  β”œβ”€β”€ sitemap.xml
β”‚Β Β  └── svg
β”‚Β Β      β”œβ”€β”€ 403.svg
β”‚Β Β      β”œβ”€β”€ 404.svg
β”‚Β Β      β”œβ”€β”€ 500.svg
β”‚Β Β      └── 503.svg
β”œβ”€β”€ resources
β”‚Β Β  β”œβ”€β”€ admin
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ admin.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ bootstrap.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ bs-tooltips.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── set-ckeditor.js
β”‚Β Β  β”‚Β Β  └── sass
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ _dropzone.scss
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ _fab.scss
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ _forms.scss
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ _mixins.scss
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ _nucleo-icons.scss
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ _tables.scss
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ _variables.scss
β”‚Β Β  β”‚Β Β      └── admin.scss
β”‚Β Β  β”œβ”€β”€ js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ bootstrap.js
β”‚Β Β  β”‚Β Β  └── components
β”‚Β Β  β”‚Β Β      └── ExampleComponent.vue
β”‚Β Β  β”œβ”€β”€ lang
β”‚Β Β  β”‚Β Β  └── en
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ admin.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ auth.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ emails.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ forms.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ larablog.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ messages.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ modals.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ pagination.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ passwords.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ themes.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ tooltips.php
β”‚Β Β  β”‚Β Β      └── validation.php
β”‚Β Β  β”œβ”€β”€ sass
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _variables.scss
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.scss
β”‚Β Β  β”‚Β Β  └── partials
β”‚Β Β  β”‚Β Β      └── _bs-visibility-classes.scss
β”‚Β Β  └── views
β”‚Β Β      β”œβ”€β”€ admin
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ forms
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── generate-sitemap.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ modals
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ delete-modal.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ delete-post-modal-form.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ delete-tag-modal-form.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ save-modal.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ save-post-modal-form.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── upload-modal.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ pages
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ home.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ sitemap.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── uploads.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ partials
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ drawer-nav.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ footer.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ loading-file-1.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ loading-spinner-1.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ messages.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ navbar.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── sidebar.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ post
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ create.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ edit.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ index.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── partials
β”‚Β Β      β”‚Β Β  β”‚Β Β      └── post-form.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ scripts
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ delete-modal-script.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ post-form-scripts.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ save-modal-script.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ save-post-modal.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── toggle-status.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ tag
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ create.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ edit.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ index.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── partials
β”‚Β Β      β”‚Β Β  β”‚Β Β      └── tag-form.blade.php
β”‚Β Β      β”‚Β Β  └── themesmanagement
β”‚Β Β      β”‚Β Β      β”œβ”€β”€ create-theme.blade.php
β”‚Β Β      β”‚Β Β      β”œβ”€β”€ edit-theme.blade.php
β”‚Β Β      β”‚Β Β      β”œβ”€β”€ index.blade.php
β”‚Β Β      β”‚Β Β      β”œβ”€β”€ partials
β”‚Β Β      β”‚Β Β      β”‚Β Β  β”œβ”€β”€ default-theme-form.blade.php
β”‚Β Β      β”‚Β Β      β”‚Β Β  └── theme-table-list.blade.php
β”‚Β Β      β”‚Β Β      └── show-theme.blade.php
β”‚Β Β      β”œβ”€β”€ auth
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ login.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ passwords
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ email.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── reset.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ register.blade.php
β”‚Β Β      β”‚Β Β  └── verify.blade.php
β”‚Β Β      β”œβ”€β”€ blog
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ forms
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── contact-form.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ pages
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ author.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ authors.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── contact.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ partials
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ analytics.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ disqus.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ disqusjs.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ footer.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ header-post.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ header.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ messages.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ nav.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ posts-pager.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ posts-roll.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── social-media.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ post-layouts
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── standard.blade.php
β”‚Β Β      β”‚Β Β  └── roll-layouts
β”‚Β Β      β”‚Β Β      └── home.blade.php
β”‚Β Β      β”œβ”€β”€ layouts
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ admin.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ app.blade.php
β”‚Β Β      β”‚Β Β  └── auth.blade.php
β”‚Β Β      └── mail
β”‚Β Β          └── contact.blade.php
β”œβ”€β”€ routes
β”‚Β Β  β”œβ”€β”€ api.php
β”‚Β Β  β”œβ”€β”€ channels.php
β”‚Β Β  β”œβ”€β”€ console.php
β”‚Β Β  └── web.php
β”œβ”€β”€ server.php
β”œβ”€β”€ tests
β”‚Β Β  β”œβ”€β”€ CreatesApplication.php
β”‚Β Β  β”œβ”€β”€ Feature
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ExampleTest.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ MarkdownerTest.php
β”‚Β Β  β”‚Β Β  └── PostsTest.php
β”‚Β Β  β”œβ”€β”€ TestCase.php
β”‚Β Β  └── Unit
β”‚Β Β      └── ExampleTest.php
β”œβ”€β”€ webpack.mix.js
β”œβ”€β”€ yarn-error.log
└── yarn.lock

  • Tree command can be installed using brew: brew install tree
  • File tree generated using command tree -a -I '.git|node_modules|vendor|storage|ckeditor'

Opening an Issue

Before opening an issue there are a couple of considerations:

  • You are all awesome!
  • Read the instructions and make sure all steps were followed correctly.
  • Check that the issue is not specific to the development environment setup.
  • Provide duplication steps.
  • Attempt to look into the issue, and if you have a solution, make a pull request.
  • Show that you have made an attempt to look into the issue.
  • Check to see if the issue you are reporting is a duplicate of a previous reported issue.
  • Following these instructions show me that you have tried.
  • If you have a questions send me an email to [email protected]
  • Need some help, I can do my best on Slack: https://opensourcehelpgroup.slack.com
  • Please be considerate that this is an open source project that I provide to the community for FREE when opening an issue.

Open source projects are the community’s responsibility to use, contribute, and debug.

License

Larablog is licensed under the MIT license. Enjoy!

More Repositories

1

laravel-auth

Laravel 10 with user authentication, registration with email confirmation, social media authentication, password recovery, and captcha protection. Uses offical [Bootstrap 4](http://getbootstrap.com). This also makes full use of Controllers for the routes, templates for the views, and makes use of middleware for routing. 5 Minutes Stand-up time.
JavaScript
2,924
star
2

laravel-roles

A Powerful package for handling roles and permissions in Laravel with GUI. Supports Laravel 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6.0, 7.0, 8.0, and 9.0
PHP
891
star
3

laravel-logger

An out the box activity logger for your Laravel or Lumen application. Laravel logger is an activity event logger for your laravel application. It comes out the box with ready to use with dashboard to view your activity. Laravel logger can be added as a middleware or called through a trait. This package is easily configurable and customizable. Supports Laravel 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6, and 7+
PHP
494
star
4

laravel-users

A Users Management Package that includes all necessary routes, views, models, and controllers for a user management dashboard and associated pages for managing Laravels built in user scaffolding. Built for Laravel 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6.0, 7.0 and 8.0.
Blade
402
star
5

laravel-material-design

Laravel 5.6 on Material Design Lite 1.3 with user authentication, registration with email confirmation, social media authentication, password recovery, and captcha protection. This makes full use of Controllers for the routes, templates for the views, and makes use of middleware for routing. Uses laravel ORM modeling and has CRUD (Create Read Update Delete) functionality for all tasks. Quick setup, can be done in 5 minutes. It will take longer to obtain your Facebook, Twitter, and Google Plus API Keys than it will to set this up.
JavaScript
260
star
6

laravel2step

Laravel 2-Step verification is a package to add 2-Step user authentication to any Laravel project easily. It is configurable and customizable. It uses notifications to send the user an email with a 4-digit verification code. Laravel 2-Step Authentication Verification for Laravel. Can be used in out the box with Laravel's authentication scaffolding or integrated into other projects.
PHP
213
star
7

laravel-exception-notifier

Laravel Exception Notifier will send an email of the error along with the stack trace to the chosen recipients. This Package includes all necessary traits, views, configs, and Mailers for email notifications upon your applications exceptions. You can customize who send to, cc to, bcc to, enable/disable, and custom subject or default subject based on environment. Built for Laravel 5.2, 5.3, 5.4, 5.5+. Get the errors and fix them before the client even reports them, that's why this exists! For Laravel 5, 6, and 7
PHP
125
star
8

laravel-spa

A Laravel + Socialite + Vite + Vue 3 + TailwindCSS SPA Boilerplate with user authentication, registration, email verification, social media authentication, password recovery, user management, and roles/permissions management. Uses TailwindCSS. While the front end is part of this repository it is a completely separated Vue 3 front end.
JavaScript
98
star
9

laravel-blocker

Larave Blocker is a middleware interface to block users, emails, ip addresses, domain names, cities, states, countries, continents, and regions from using your application, logging in, or registering. The types of items to be blocked can be extended to what you think via a seed. The items you are blocking have a CRUD interface along with a softdeletes interface.
Blade
92
star
10

laravel-admin

Laravel 5.2 + Bootstrap 3.5 + AdminLTE 2.3
JavaScript
61
star
11

slack-laravel

Laravel integration for the Slack, including facades and service providers.
PHP
55
star
12

laravel-phpinfo

Laravel PHP Info is a package that provides a PHPInfo() page using blade templating. The config file can be used to enable/disable auth protection and specify the roles middleware.
PHP
44
star
13

laravel-podcast

Laravel Podcast is Laravel 5.5 web app that enables you to manage RSS feeds for your favorite podcasts and listen to the episodes in a seamless UI and User Authentication.
PHP
38
star
14

laravel-https

Laravel Https is middleware to check for Secure HTTP requests. Laravel Https has can check for HTTPS and throw an error or automatically redirect to HTTPS.
PHP
34
star
15

laravel-tasks

An app of tasks lists for each individual user. Built on Laravel 5.2, using 5.2 authentication and middleware. This has robust verbose examples using Laravel best practices. The task list is a build out of https://laravel.com/docs/5.2/quickstart. This included minimal bootstrap implementation.
PHP
26
star
16

laravel-time-tracker

Laravel Angular Time Tracker is a simple time tracking application built on Laravel 5.2, Angular 2, and Bootstrap 3. It uses Laravel's built in authentication, MySQL, Angular Bootstrap 1.3.*, Angular Resource 1.5.* ngResource, jQuery 2.2.4 and Moment.js 2.13.*
PHP
25
star
17

laravel-soundboard

An open source Laravel Soundboard with Admin Panel CRUD (Create Read Update Delete) built on Laravel, Bootstrap, and Vue.js
PHP
24
star
18

laravel-uuid

Laravel package to generate a UUID according to the RFC 4122 standard. UUID Versions 1, 3, 4 and 5 are supported.
PHP
22
star
19

laravelpodcast

Laravel Podcast Manager is a complete podcast manager package for Laravel 5.3+ that enables you to manage RSS feeds for your favorite podcasts and listen to the episodes in a seamless UI.
CSS
22
star
20

laravel-dashboard

This is an example of Spatie Laravel Dashboard using Livewire and package components. This example has all settings extended to the `dashboard.php` config file and the `.env` file. This example uses minimal styling and customization.
PHP
14
star
21

laravel-passport

Laravel-passport is a basic API server build using Laravel, Passport, and Vue.js License Build Status This will act as the API server for laravel-consume. It is recommended that you setup and use Laravel Homestead as your development environment for this project. Personal Token Scoped with middleware for API routes is configured and ready to go. Included Laravel Scaffolding User, Editor, and Administrator Authentication with CRUD (Create, Read, Update, Delete) user management.
PHP
11
star
22

slack

A simple PHP package for sending messages to Slack.
PHP
9
star
23

laravel-pusher-chat

Example of chat messaging system with pusher and Eloquent
HTML
8
star
24

laravel-nerds

A Laravel 5.1 ORM example with Nerds as users.
PHP
7
star
25

laravel-email-database-log

A database logger for all outgoing emails sent by your Laravel application.
PHP
6
star
26

laravel-roles-example

An example of jeremykenedy/laravel-roles, a Laravel 5.4+ roles package.
PHP
6
star
27

laravel-packagist

An easy way to get vendor and package data from Packagist via API calls
PHP
5
star
28

microsoft-powerbi-javascript-example

Microsoft Power BI is a suite of business analytics tools that deliver insights throughout your organization. This is an example of the powerbi-client API javascript embeded interface.
JavaScript
5
star
29

jquery-ui-position-sql-save

Save position and resize properties of jQuery UI to a SQL table.
JavaScript
4
star
30

laravel-consumer

PHP
3
star
31

bootstrap-youtube-modal-plugin

Bootstap YouTube video modal helper, with auto video switcher to modal.
HTML
3
star
32

konami-asteroids

Use the Konami code to easily add a playable Astroids game to a page using the html as the game
JavaScript
3
star
33

laravel-todo

PHP
2
star
34

jeremy-sound-board

Set of wav files for the soundboard
2
star
35

laravel-charts

PHP
2
star
36

pushit

Salt and Pepper Push on Git Push - Or whatever mp3 you like. Basic bash shell-script calling git and afplay commands. The file mp3 file name and path are in a variable for easy maintenance and reusability for more alias's, you can also create more variables for other mp3's as well as just call them directly in your alias. This is pretty light weight and strait forward. The mp3 file was trimmed with quicktime and is being played with the native mac os (maybe linux? confirm?) player. The mp3 file is 274KB and the the attached shell script (sh) file is B. You can can the script file using the sh command or directly add the contents into your bash profile. Have fun !!!!! :)
Shell
2
star
37

hiupload-client

Vue
1
star
38

laravel_frozennode_cms

JavaScript
1
star
39

jeremykenedy

1
star
40

laravel-react-tasks

Simple create/read/update task list example using Laravel 5.7 API routes and ReactJS UI.
PHP
1
star
41

laravel-react-products

Simple products Create/Read example using Laravel 5.7 and ReactJS UI.
PHP
1
star
42

polr2

PHP
1
star
43

yt-video-gallery

jquery youtube video gallery plugin
JavaScript
1
star
44

pure-javascript-sorting

An example of sorting records with pure javascript.
HTML
1
star
45

action-planner-example

Example
PHP
1
star
46

zoom-care-events

A simple fully expandable Node.js app that takes JSON data and renders it in a MVC style setup with Express.js
CSS
1
star
47

laravel.local

An out the Box Laravel Installation with Auth scaffolding - For example purposes.
PHP
1
star
48

hiupload-api

PHP
1
star
49

crudbooster-example

PHP
1
star
50

angular-js-bootstrap-scss

This is an example of a front end application using Angular.js.
JavaScript
1
star
51

jeremykenedy.github.io

CSS
1
star
52

taco-time

Simple example Laravel 5.7 app to calculate taco checkout time using a VueJS 2 front end calling Laravel API endpoints.
PHP
1
star
53

laralogin

Laravel 5.1 with authentication and User/Admin MIddlware. Purely based on Laravel 5.1 documentations located at http://laravel.com/docs/5.1/authentication.
PHP
1
star
54

timezones

This is a base example of a laravel package. The focus is on the framework of the package and the essential elements and not so much what it actually does. It returns the time and date in a Laravel application when going to the the URL /timezones/{TIMEZONE} from the projects base url.
HTML
1
star
55

vue-cordova-ratchet

A Template created with vue cli and vue-cordova. This will compile using to IOS, Android, Electron, and OSX native all from the cli out the box!
Objective-C
1
star
56

resize-listener

A pure javascript resize listener, checks on page load and on every window resize. Handy for scripts and functions that need to run on mobile but not desktop or vice versa.
JavaScript
1
star