Laravel Nova v2.8.0 : 自定义动作标签

Laravel Nova v2.8.0 : Customize action label

有没有一种简单的方法可以为我的资源概览自定义操作标签?

产品资源

//App\Nova\Product.php
namespace App\Nova;
use Illuminate\Http\Request;
use App\Nova\Actions\UploadProdcuts as UploadProdcuts;

class Product extends Resource
{
    //...
    /**
     * Get the actions available for the resource.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    public function actions(Request $request)
    {
        return [
            new UploadProdcuts
        ];
    }
}

上传产品操作

//App\Nova\Actions\UploadProdcuts.php
namespace App\Nova\Actions;

use Illuminate\Bus\Queueable;
use Laravel\Nova\Actions\Action;
use Illuminate\Support\Collection;
use Laravel\Nova\Fields\ActionFields;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Laravel\Nova\Fields\File;
use App\Imports\ProductsImport;
use Maatwebsite\Excel\Facades\Excel;

class UploadProdcuts extends Action
{
    use InteractsWithQueue, Queueable, SerializesModels;

    //public $onlyOnDetail = true;
    //public $onlyOnIndex = true;

    /**
     * Perform the action on the given models.
     *
     * @param  \Laravel\Nova\Fields\ActionFields  $fields
     * @param  \Illuminate\Support\Collection  $models
     * @return mixed
     */
    public function handle(ActionFields $fields, Collection $models)
    {
        Excel::import(new ProductsImport, request()->file('file'));

        return Action::message('Products Uploaded Successfully!');
    }

    /**
     * Get the fields available on the action.
     *
     * @return array
     */
    public function fields()
    {
        return [
            File::make('File')->rules('required', 'max:50000', 'mimetypes:application/csv,application/excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'),
        ];
    }
}

您可以在 class 中设置 $name 属性 或添加该功能。如果您查看 Nova 的 Action class 中的 name 函数 (vendor/laravel/nova/src/Actions/Action.php):

/**
 * Get the displayable name of the action.
 *
 * @return string
 */
public function name()
{
    return $this->name ?: Nova::humanize($this);
}

所以你可以在你的 class 中设置一个 属性 像这样:

class UploadProdcuts extends Action
{
    public $name = 'My Action';
}

或者简单地添加name函数:

/**
 * Get the displayable name of the action.
 *
 * @return string
 */
public function name(): string
{
    return __('My Action Name');
}

旁注,您的 class 姓名有错字。您将其命名为 UploadProdcuts 而不是 UploadProducts.