Unverified Commit b09995dc authored by Vipul Basapati's avatar Vipul Basapati Committed by GitHub

Bug fixes (#255)

* removed generator resources/vendor files

* resolved html flash <br/> in validation messages issue

* updated fronted account section to remove address, state, city, ssn and zipcode as we are not using it anywhere

* Modified the Blogs Request on web and api to check for publish_datetime #250

Fixed style CI issues

* Fixed Menu issue

* Update README.md

* fixed table names from faqs repository
parent f75b15d3
......@@ -9,6 +9,7 @@
## Introduction
* This is a laravel Admin Panel, based on [Rappasoft Laravel Boilerplate](https://github.com/rappasoft/laravel-5-boilerplate/releases/tag/4.5.7), with enhancemenets and many modules pre-made, just for you.
* The project is taken to Laravel 5.6 so we can develop from the latest Laravel.
* Article on our Admin Panel on CodeWall : [https://www.codewall.co.uk/the-laravel-admin-panel-that-you-need/](https://www.codewall.co.uk/the-laravel-admin-panel-that-you-need/)
## Features
For Laravel 5 Boilerplate Features : [Features](https://github.com/rappasoft/laravel-5-boilerplate/wiki#features)
......
......@@ -23,8 +23,8 @@ class FaqsRepository extends BaseRepository
{
return $this->query()
->select([
config('mdule.faqs.able').'.id',
config('odule.faqs.table').'.question',
config('module.faqs.table').'.id',
config('module.faqs.table').'.question',
config('module.faqs.table').'.answer',
config('module.faqs.table').'.status',
config('module.faqs.table').'.created_at',
......
......@@ -491,7 +491,7 @@ var Backend = {}; // common variable used in all the files of the backend
this.selectors.menuItemContainer.nestable({
callback: function (l, e) {
this.selectors.menuItemsData.val(JSON.stringify($(l).nestable('serialise')));
context.selectors.menuItemsData.val(JSON.stringify($(l).nestable('serialise')));
},
json: this.selectors.menuItemsData.val(),
includeContent: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment