@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | public function register() |
32 | 32 | { |
33 | 33 | $this->mergeConfigFrom( |
34 | - __DIR__ . '/../config/crudapi.php', 'crudapi' |
|
34 | + __DIR__.'/../config/crudapi.php', 'crudapi' |
|
35 | 35 | ); |
36 | 36 | } |
37 | 37 | |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | { |
44 | 44 | $this->publishes( |
45 | 45 | [ |
46 | - __DIR__ . '/../config/crudapi.php' => config_path('crudapi.php'), |
|
46 | + __DIR__.'/../config/crudapi.php' => config_path('crudapi.php'), |
|
47 | 47 | ], 'crudapi-config' |
48 | 48 | ); |
49 | 49 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | |
21 | 21 | $item = new Post(); |
22 | 22 | |
23 | - $config = require __DIR__ . '/../../config/crudapi.php'; |
|
23 | + $config = require __DIR__.'/../../config/crudapi.php'; |
|
24 | 24 | |
25 | 25 | $primary_field = $fieldHelper->getPrimaryField($item, $config); |
26 | 26 |