We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Backpack\CRUD\app\Http\Controllers\CrudController; |
6 | 6 | // VALIDATION: change the requests to match your own file names if you need form validation |
7 | -use Backpack\NewsCRUD\app\Http\Requests\ArticleRequest as StoreRequest; |
|
8 | 7 | use Backpack\NewsCRUD\app\Http\Requests\ArticleRequest as UpdateRequest; |
9 | 8 | |
10 | 9 | class ArticleCrudController extends CrudController |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Backpack\CRUD\app\Http\Controllers\CrudController; |
6 | 6 | // VALIDATION: change the requests to match your own file names if you need form validation |
7 | -use Backpack\NewsCRUD\app\Http\Requests\CategoryRequest as StoreRequest; |
|
8 | 7 | use Backpack\NewsCRUD\app\Http\Requests\CategoryRequest as UpdateRequest; |
9 | 8 | |
10 | 9 | class CategoryCrudController extends CrudController |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Backpack\CRUD\app\Http\Controllers\CrudController; |
6 | 6 | // VALIDATION: change the requests to match your own file names if you need form validation |
7 | -use Backpack\NewsCRUD\app\Http\Requests\TagRequest as StoreRequest; |
|
8 | 7 | use Backpack\NewsCRUD\app\Http\Requests\TagRequest as UpdateRequest; |
9 | 8 | |
10 | 9 | class TagCrudController extends CrudController |
@@ -3,9 +3,9 @@ |
||
3 | 3 | namespace Backpack\NewsCRUD\app\Models; |
4 | 4 | |
5 | 5 | use Backpack\CRUD\CrudTrait; |
6 | -use Illuminate\Database\Eloquent\Model; |
|
7 | 6 | use Cviebrock\EloquentSluggable\Sluggable; |
8 | 7 | use Cviebrock\EloquentSluggable\SluggableScopeHelpers; |
8 | +use Illuminate\Database\Eloquent\Model; |
|
9 | 9 | |
10 | 10 | class Article extends Model |
11 | 11 | { |
@@ -3,9 +3,9 @@ |
||
3 | 3 | namespace Backpack\NewsCRUD\app\Models; |
4 | 4 | |
5 | 5 | use Backpack\CRUD\CrudTrait; |
6 | -use Illuminate\Database\Eloquent\Model; |
|
7 | 6 | use Cviebrock\EloquentSluggable\Sluggable; |
8 | 7 | use Cviebrock\EloquentSluggable\SluggableScopeHelpers; |
8 | +use Illuminate\Database\Eloquent\Model; |
|
9 | 9 | |
10 | 10 | class Category extends Model |
11 | 11 | { |
@@ -3,9 +3,9 @@ |
||
3 | 3 | namespace Backpack\NewsCRUD\app\Models; |
4 | 4 | |
5 | 5 | use Backpack\CRUD\CrudTrait; |
6 | -use Illuminate\Database\Eloquent\Model; |
|
7 | 6 | use Cviebrock\EloquentSluggable\Sluggable; |
8 | 7 | use Cviebrock\EloquentSluggable\SluggableScopeHelpers; |
8 | +use Illuminate\Database\Eloquent\Model; |
|
9 | 9 | |
10 | 10 | class Tag extends Model |
11 | 11 | { |