Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Name
  6. |--------------------------------------------------------------------------
  7. |
  8. | This value is the name of your application. This value is used when the
  9. | framework needs to place the application's name in a notification or
  10. | any other location as required by the application or its packages.
  11. |
  12. */
  13. 'name' => env('APP_NAME', 'Raharja'),
  14. /*
  15. |-------------------------------------------
  16. | Current API Version
  17. |-------------------------------------------
  18. | That is the default API version of your API (Last version).
  19. | The idea is that if there is no version when calling the API, it | will be used this one.
  20. */
  21. 'api_latest' => '1',
  22. /*
  23. |--------------------------------------------------------------------------
  24. | Application Environment
  25. |--------------------------------------------------------------------------
  26. |
  27. | This value determines the "environment" your application is currently
  28. | running in. This may determine how you prefer to configure various
  29. | services the application utilizes. Set this in your ".env" file.
  30. |
  31. */
  32. 'env' => env('APP_ENV', 'production'),
  33. 'APP_ID_SA' => env('APP_ID_SA', '1'),
  34. 'APP_URL_SIDONI' => env('APP_URL_SIDONI', 'http://dev-rs-admin.sidoni.xyz'),
  35. /*
  36. |--------------------------------------------------------------------------
  37. | Application Debug Mode
  38. |--------------------------------------------------------------------------
  39. |
  40. | When your application is in debug mode, detailed error messages with
  41. | stack traces will be shown on every error that occurs within your
  42. | application. If disabled, a simple generic error page is shown.
  43. |
  44. */
  45. 'debug' => env('APP_DEBUG', false),
  46. /*
  47. |--------------------------------------------------------------------------
  48. | Application URL
  49. |--------------------------------------------------------------------------
  50. |
  51. | This URL is used by the console to properly generate URLs when using
  52. | the Artisan command line tool. You should set this to the root of
  53. | your application so that it is used when running Artisan tasks.
  54. |
  55. */
  56. 'url' => env('APP_URL', 'http://localhost'),
  57. 'asset_url' => env('ASSET_URL', null),
  58. /*
  59. |--------------------------------------------------------------------------
  60. | Application Timezone
  61. |--------------------------------------------------------------------------
  62. |
  63. | Here you may specify the default timezone for your application, which
  64. | will be used by the PHP date and date-time functions. We have gone
  65. | ahead and set this to a sensible default for you out of the box.
  66. |
  67. */
  68. 'timezone' => 'Asia/Jakarta',
  69. /*
  70. |--------------------------------------------------------------------------
  71. | Application Locale Configuration
  72. |--------------------------------------------------------------------------
  73. |
  74. | The application locale determines the default locale that will be used
  75. | by the translation service provider. You are free to set this value
  76. | to any of the locales which will be supported by the application.
  77. |
  78. */
  79. 'locale' => 'id',
  80. /*
  81. |--------------------------------------------------------------------------
  82. | Application Fallback Locale
  83. |--------------------------------------------------------------------------
  84. |
  85. | The fallback locale determines the locale to use when the current one
  86. | is not available. You may change the value to correspond to any of
  87. | the language folders that are provided through your application.
  88. |
  89. */
  90. 'fallback_locale' => 'en',
  91. /*
  92. |--------------------------------------------------------------------------
  93. | Faker Locale
  94. |--------------------------------------------------------------------------
  95. |
  96. | This locale will be used by the Faker PHP library when generating fake
  97. | data for your database seeds. For example, this will be used to get
  98. | localized telephone numbers, street address information and more.
  99. |
  100. */
  101. 'faker_locale' => 'id_ID',
  102. /*
  103. |--------------------------------------------------------------------------
  104. | Encryption Key
  105. |--------------------------------------------------------------------------
  106. |
  107. | This key is used by the Illuminate encrypter service and should be set
  108. | to a random, 32 character string, otherwise these encrypted strings
  109. | will not be safe. Please do this before deploying an application!
  110. |
  111. */
  112. 'key' => env('APP_KEY'),
  113. 'cipher' => 'AES-256-CBC',
  114. /*
  115. |--------------------------------------------------------------------------
  116. | Autoloaded Service Providers
  117. |--------------------------------------------------------------------------
  118. |
  119. | The service providers listed here will be automatically loaded on the
  120. | request to your application. Feel free to add your own services to
  121. | this array to grant expanded functionality to your applications.
  122. |
  123. */
  124. 'providers' => [
  125. /*
  126. * Laravel Framework Service Providers...
  127. */
  128. Illuminate\Auth\AuthServiceProvider::class,
  129. Illuminate\Broadcasting\BroadcastServiceProvider::class,
  130. Illuminate\Bus\BusServiceProvider::class,
  131. Illuminate\Cache\CacheServiceProvider::class,
  132. Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
  133. Illuminate\Cookie\CookieServiceProvider::class,
  134. Illuminate\Database\DatabaseServiceProvider::class,
  135. Illuminate\Encryption\EncryptionServiceProvider::class,
  136. Illuminate\Filesystem\FilesystemServiceProvider::class,
  137. Illuminate\Foundation\Providers\FoundationServiceProvider::class,
  138. Illuminate\Hashing\HashServiceProvider::class,
  139. Illuminate\Mail\MailServiceProvider::class,
  140. Illuminate\Notifications\NotificationServiceProvider::class,
  141. Illuminate\Pagination\PaginationServiceProvider::class,
  142. Illuminate\Pipeline\PipelineServiceProvider::class,
  143. Illuminate\Queue\QueueServiceProvider::class,
  144. Illuminate\Redis\RedisServiceProvider::class,
  145. Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
  146. Illuminate\Session\SessionServiceProvider::class,
  147. Illuminate\Translation\TranslationServiceProvider::class,
  148. Illuminate\Validation\ValidationServiceProvider::class,
  149. Illuminate\View\ViewServiceProvider::class,
  150. /*
  151. * Maat Excel
  152. */
  153. Maatwebsite\Excel\ExcelServiceProvider::class,
  154. /*
  155. * Package Service Providers...
  156. */
  157. Barryvdh\DomPDF\ServiceProvider::class,
  158. /*
  159. * Application Service Providers...
  160. */
  161. App\Providers\AppServiceProvider::class,
  162. App\Providers\AuthServiceProvider::class,
  163. // App\Providers\BroadcastServiceProvider::class,
  164. App\Providers\EventServiceProvider::class,
  165. App\Providers\RouteServiceProvider::class,
  166. /**
  167. * spatie
  168. */
  169. Spatie\Permission\PermissionServiceProvider::class,
  170. /**alert */
  171. RealRashid\SweetAlert\SweetAlertServiceProvider::class,
  172. /**image */
  173. 'Intervention\Image\ImageServiceProvider',
  174. /** Barcode */
  175. Milon\Barcode\BarcodeServiceProvider::class,
  176. /** Batch */
  177. // Mavinoo\Batch\BatchServiceProvider::class,
  178. ],
  179. /*
  180. |--------------------------------------------------------------------------
  181. | Class Aliases
  182. |--------------------------------------------------------------------------
  183. |
  184. | This array of class aliases will be registered when this application
  185. | is started. However, feel free to register as many as you wish as
  186. | the aliases are "lazy" loaded so they don't hinder performance.
  187. |
  188. */
  189. 'aliases' => [
  190. 'App' => Illuminate\Support\Facades\App::class,
  191. 'Arr' => Illuminate\Support\Arr::class,
  192. 'Artisan' => Illuminate\Support\Facades\Artisan::class,
  193. 'Auth' => Illuminate\Support\Facades\Auth::class,
  194. 'Blade' => Illuminate\Support\Facades\Blade::class,
  195. 'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
  196. 'Bus' => Illuminate\Support\Facades\Bus::class,
  197. 'Cache' => Illuminate\Support\Facades\Cache::class,
  198. 'Config' => Illuminate\Support\Facades\Config::class,
  199. 'Cookie' => Illuminate\Support\Facades\Cookie::class,
  200. 'Crypt' => Illuminate\Support\Facades\Crypt::class,
  201. 'DB' => Illuminate\Support\Facades\DB::class,
  202. 'Eloquent' => Illuminate\Database\Eloquent\Model::class,
  203. 'Event' => Illuminate\Support\Facades\Event::class,
  204. 'File' => Illuminate\Support\Facades\File::class,
  205. 'Gate' => Illuminate\Support\Facades\Gate::class,
  206. 'Hash' => Illuminate\Support\Facades\Hash::class,
  207. 'Http' => Illuminate\Support\Facades\Http::class,
  208. 'Lang' => Illuminate\Support\Facades\Lang::class,
  209. 'Log' => Illuminate\Support\Facades\Log::class,
  210. 'Mail' => Illuminate\Support\Facades\Mail::class,
  211. 'Notification' => Illuminate\Support\Facades\Notification::class,
  212. 'Password' => Illuminate\Support\Facades\Password::class,
  213. 'Queue' => Illuminate\Support\Facades\Queue::class,
  214. 'Redirect' => Illuminate\Support\Facades\Redirect::class,
  215. 'Redis' => Illuminate\Support\Facades\Redis::class,
  216. 'Request' => Illuminate\Support\Facades\Request::class,
  217. 'Response' => Illuminate\Support\Facades\Response::class,
  218. 'Route' => Illuminate\Support\Facades\Route::class,
  219. 'Schema' => Illuminate\Support\Facades\Schema::class,
  220. 'Session' => Illuminate\Support\Facades\Session::class,
  221. 'Storage' => Illuminate\Support\Facades\Storage::class,
  222. 'Str' => Illuminate\Support\Str::class,
  223. 'URL' => Illuminate\Support\Facades\URL::class,
  224. 'Validator' => Illuminate\Support\Facades\Validator::class,
  225. 'View' => Illuminate\Support\Facades\View::class,
  226. /**Helper */
  227. 'Helper' => App\Helpers\Helper::class,
  228. /**alert */
  229. 'Alert' => RealRashid\SweetAlert\Facades\Alert::class,
  230. 'Carbon' => 'Carbon\Carbon',
  231. /**image resize */
  232. 'Image' => 'Intervention\Image\Facades\Image',
  233. //**PDF */
  234. 'PDF' => Barryvdh\DomPDF\Facade::class,
  235. //** Barcode */
  236. 'DNS1D' => Milon\Barcode\Facades\DNS1DFacade::class,
  237. 'DNS2D' => Milon\Barcode\Facades\DNS2DFacade::class,
  238. //** Maat Excel */
  239. 'Excel' => Maatwebsite\Excel\Facades\Excel::class,
  240. /**Batch */
  241. // 'Batch' => Mavinoo\Batch\BatchFacade::class,
  242. ],
  243. ];