]> _ Git - cubist_cms-back.git/commitdiff
#2783
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 21 May 2019 12:49:13 +0000 (14:49 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 21 May 2019 12:49:13 +0000 (14:49 +0200)
src/app/Http/Controllers/CubistModelCrudController.php
src/app/Http/Requests/ModelRequest.php
src/app/Models/CubistModel.php

index 6d738f87e79182205ee727782e2d731c6ae1c1ec..5fa4be99d94a012627bd38bac44144f933df38e2 100644 (file)
@@ -1,12 +1,12 @@
 <?php
 
-namespace App\Http\Controllers\Admin;
+namespace Cubist\Backpack\app\Http\Controllers;
 
 use Backpack\CRUD\app\Http\Controllers\CrudController;
 
 // VALIDATION: change the requests to match your own file names if you need form validation
-use App\Http\Requests\CubistModelRequest as StoreRequest;
-use App\Http\Requests\CubistModelRequest as UpdateRequest;
+use Cubist\Backpack\app\Http\Requests\CubistModelRequest as StoreRequest;
+use Cubist\Backpack\app\Http\Requests\CubistModelRequest as UpdateRequest;
 use Backpack\CRUD\CrudPanel;
 
 /**
index a6acfc85aac300063a2afa7105ef04b50ad56f6f..88b98b5ae0648e70aa443a68b07bcb63679aeec0 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-namespace app\Http\Requests;
+namespace Cubist\Backpack\app\Http\Requests;
 
 use Illuminate\Foundation\Http\FormRequest;
 
index f42c07ff51223f2c35466a23da540894eb631fb1..0a4ccb8143ea2204e0c94b99195675bc03dc56fa 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 
-
-namespace app\Models;
+namespace Cubist\Backpack\app\Models;
 
 
 use Illuminate\Database\Eloquent\Model;