升级我的Laravel Yajra表

时间:2017-09-13 08:40:12

标签: laravel yajra-datatable

我当前在7.5.0,我想升级到8.0.3,我按照https://yajrabox.com/docs/laravel-datatables/master/upgrade中的步骤操作,但我遇到了此错误

./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 0 installs, 1 update, 0 removals
  - Updating yajra/laravel-datatables-oracle (v7.5.0 => v8.0.3): Downloading (conneDownloading (100%)
Writing lock file
Generating optimized autoload files
> Illuminate\Foundation\ComposerScripts::postUpdate
> php artisan optimize


  [Symfony\Component\Debug\Exception\FatalThrowableError]
  Class 'Yajra\Datatables\DatatablesServiceProvider' not found


Script php artisan optimize handling the post-update-cmd event returned with error code 1

Installation failed, reverting ./composer.json to its original content.

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

  1. 在文件夹 config/app.php 中,暂时退出 的 Yajra\Datatables\DatatablesServiceProvider 即可。
  2. 运行命令 composer update
  3. 取消注释提供商 Yajra\Datatables\DatatablesServiceProvider
  4. 完成。
  5. 为了确保其有效,可以再次运行命令 composer update
  6. 参考文献:https://yajrabox.com/docs/laravel-datatables/master/upgrade#v5-to-v6