@@ -54,9 +54,7 @@ discard block |
||
| 54 | 54 | /** |
| 55 | 55 | * Fetch all records with relations from model repository. |
| 56 | 56 | * |
| 57 | - * @param string $sortBy |
|
| 58 | - * @param boolean $desc |
|
| 59 | - * @return \Illuminate\Http\Response |
|
| 57 | + * @return \Illuminate\Http\JsonResponse|null |
|
| 60 | 58 | */ |
| 61 | 59 | public function getIndex() |
| 62 | 60 | { |
@@ -71,7 +69,7 @@ discard block |
||
| 71 | 69 | * Fetch the single object with relations from model repository. |
| 72 | 70 | * |
| 73 | 71 | * @param integer $id |
| 74 | - * @return \Illuminate\Http\Response |
|
| 72 | + * @return \Illuminate\Http\JsonResponse|null |
|
| 75 | 73 | */ |
| 76 | 74 | public function getFind($id) |
| 77 | 75 | { |
@@ -89,8 +87,8 @@ discard block |
||
| 89 | 87 | * @param string $query |
| 90 | 88 | * @param integer $perPage |
| 91 | 89 | * @param string $sortBy |
| 92 | - * @param boolean $desc |
|
| 93 | - * @return \Illuminate\Http\Response |
|
| 90 | + * @param integer $desc |
|
| 91 | + * @return \Illuminate\Http\JsonResponse|null |
|
| 94 | 92 | */ |
| 95 | 93 | public function getSearch($query = '', $perPage = 15, $sortBy = 'created_at', $desc = 1) |
| 96 | 94 | { |
@@ -107,8 +105,8 @@ discard block |
||
| 107 | 105 | * |
| 108 | 106 | * @param \Illuminate\Http\Request $request |
| 109 | 107 | * @param string $sortBy |
| 110 | - * @param boolean $desc |
|
| 111 | - * @return \Illuminate\Http\Response |
|
| 108 | + * @param integer $desc |
|
| 109 | + * @return \Illuminate\Http\JsonResponse|null |
|
| 112 | 110 | */ |
| 113 | 111 | public function postFindby(Request $request, $sortBy = 'created_at', $desc = 1) |
| 114 | 112 | { |
@@ -124,7 +122,7 @@ discard block |
||
| 124 | 122 | * condition. |
| 125 | 123 | * |
| 126 | 124 | * @param \Illuminate\Http\Request $request |
| 127 | - * @return \Illuminate\Http\Response |
|
| 125 | + * @return \Illuminate\Http\JsonResponse|null |
|
| 128 | 126 | */ |
| 129 | 127 | public function postFirst(Request $request) |
| 130 | 128 | { |
@@ -140,8 +138,8 @@ discard block |
||
| 140 | 138 | * |
| 141 | 139 | * @param integer $perPage |
| 142 | 140 | * @param string $sortBy |
| 143 | - * @param boolean $desc |
|
| 144 | - * @return \Illuminate\Http\Response |
|
| 141 | + * @param integer $desc |
|
| 142 | + * @return \Illuminate\Http\JsonResponse|null |
|
| 145 | 143 | */ |
| 146 | 144 | public function getPaginate($perPage = 15, $sortBy = 'created_at', $desc = 1) |
| 147 | 145 | { |
@@ -159,8 +157,8 @@ discard block |
||
| 159 | 157 | * @param \Illuminate\Http\Request $request |
| 160 | 158 | * @param integer $perPage |
| 161 | 159 | * @param string $sortBy |
| 162 | - * @param boolean $desc |
|
| 163 | - * @return \Illuminate\Http\Response |
|
| 160 | + * @param integer $desc |
|
| 161 | + * @return \Illuminate\Http\JsonResponse|null |
|
| 164 | 162 | */ |
| 165 | 163 | public function postPaginateby(Request $request, $perPage = 15, $sortBy = 'created_at', $desc = 1) |
| 166 | 164 | { |
@@ -175,7 +173,7 @@ discard block |
||
| 175 | 173 | * Save the given model to repository. |
| 176 | 174 | * |
| 177 | 175 | * @param \Illuminate\Http\Request $request |
| 178 | - * @return \Illuminate\Http\Response |
|
| 176 | + * @return \Illuminate\Http\JsonResponse|null |
|
| 179 | 177 | */ |
| 180 | 178 | public function postSave(Request $request) |
| 181 | 179 | { |
@@ -208,7 +206,7 @@ discard block |
||
| 208 | 206 | * Delete by the given id from model repository. |
| 209 | 207 | * |
| 210 | 208 | * @param integer $id |
| 211 | - * @return \Illuminate\Http\Response |
|
| 209 | + * @return \Illuminate\Http\JsonResponse|null |
|
| 212 | 210 | */ |
| 213 | 211 | public function getDelete($id) |
| 214 | 212 | { |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | $this->skipLoginCheck = property_exists($this, 'skipLoginCheck') ? $this->skipLoginCheck : []; |
| 48 | 48 | |
| 49 | 49 | $this->relations = array_key_exists($this->model, $this->config['relations']) ? $this->config['relations'][$this->model] : false; |
| 50 | - $route = explode('@',\Route::currentRouteAction())[1]; |
|
| 50 | + $route = explode('@', \Route::currentRouteAction())[1]; |
|
| 51 | 51 | $this->checkPermission(explode('_', snake_case($route))[1]); |
| 52 | 52 | } |
| 53 | 53 | |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | * |
| 47 | 47 | * @param array $conditions array of conditions |
| 48 | 48 | * @param array $relations |
| 49 | - * @param array $colunmns |
|
| 49 | + * @param array $columns |
|
| 50 | 50 | * @return object |
| 51 | 51 | */ |
| 52 | 52 | public function first($conditions, $relations = [], $columns = array('*')) |
@@ -5,7 +5,7 @@ |
||
| 5 | 5 | public function getConfig() |
| 6 | 6 | { |
| 7 | 7 | $customSettings = []; |
| 8 | - Settings::get(['key', 'value'])->each(function ($setting) use (&$customSettings){ |
|
| 8 | + Settings::get(['key', 'value'])->each(function($setting) use (&$customSettings){ |
|
| 9 | 9 | $customSettings[$setting['key']] = $setting['value']; |
| 10 | 10 | }); |
| 11 | 11 | |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | use Illuminate\Database\Eloquent\Model; |
| 4 | 4 | use Illuminate\Database\Eloquent\SoftDeletes; |
| 5 | 5 | |
| 6 | -class Log extends Model{ |
|
| 6 | +class Log extends Model { |
|
| 7 | 7 | |
| 8 | 8 | use SoftDeletes; |
| 9 | 9 | protected $table = 'logs'; |
@@ -12,11 +12,11 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('settings', function (Blueprint $table) { |
|
| 15 | + Schema::create('settings', function(Blueprint $table) { |
|
| 16 | 16 | $table->increments('id'); |
| 17 | - $table->string('name',100); |
|
| 18 | - $table->string('key',100)->unique(); |
|
| 19 | - $table->string('value',100); |
|
| 17 | + $table->string('name', 100); |
|
| 18 | + $table->string('key', 100)->unique(); |
|
| 19 | + $table->string('value', 100); |
|
| 20 | 20 | $table->softDeletes(); |
| 21 | 21 | $table->timestamps(); |
| 22 | 22 | }); |
@@ -12,11 +12,11 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('logs', function (Blueprint $table) { |
|
| 15 | + Schema::create('logs', function(Blueprint $table) { |
|
| 16 | 16 | $table->increments('id'); |
| 17 | - $table->string('action',100); |
|
| 18 | - $table->string('item_name',100); |
|
| 19 | - $table->string('item_type',100); |
|
| 17 | + $table->string('action', 100); |
|
| 18 | + $table->string('item_name', 100); |
|
| 19 | + $table->string('item_type', 100); |
|
| 20 | 20 | $table->integer('item_id'); |
| 21 | 21 | $table->integer('user_id'); |
| 22 | 22 | $table->softDeletes(); |
@@ -3,14 +3,14 @@ |
||
| 3 | 3 | use Illuminate\Database\Eloquent\Model; |
| 4 | 4 | use Illuminate\Database\Eloquent\SoftDeletes; |
| 5 | 5 | |
| 6 | -class Settings extends Model{ |
|
| 6 | +class Settings extends Model { |
|
| 7 | 7 | |
| 8 | 8 | use SoftDeletes; |
| 9 | 9 | protected $table = 'settings'; |
| 10 | 10 | protected $dates = ['created_at', 'updated_at', 'deleted_at']; |
| 11 | 11 | protected $hidden = ['deleted_at']; |
| 12 | 12 | protected $guarded = ['id', 'key']; |
| 13 | - protected $fillable = ['name','value']; |
|
| 13 | + protected $fillable = ['name', 'value']; |
|
| 14 | 14 | |
| 15 | 15 | public function getCreatedAtAttribute($value) |
| 16 | 16 | { |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | { |
| 19 | 19 | foreach ($this->getRepoNameSpace() as $repoNameSpace) |
| 20 | 20 | { |
| 21 | - $class = rtrim($repoNameSpace, '\\') . '\\' . ucfirst(str_singular($name)) . 'Repository'; |
|
| 21 | + $class = rtrim($repoNameSpace, '\\').'\\'.ucfirst(str_singular($name)).'Repository'; |
|
| 22 | 22 | if (class_exists($class)) |
| 23 | 23 | { |
| 24 | 24 | return \App::make($class); |
@@ -12,5 +12,5 @@ |
||
| 12 | 12 | * to preform actions like (add, edit ... etc). |
| 13 | 13 | * @var string |
| 14 | 14 | */ |
| 15 | - protected $model = 'logs'; |
|
| 15 | + protected $model = 'logs'; |
|
| 16 | 16 | } |