This commit is contained in:
2023-01-11 11:00:43 +08:00
commit ff55141a1e
791 changed files with 177427 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Admin\Actions;
use Encore\Admin\Actions\RowAction;
class LinkCreateAddress extends RowAction
{
public $name = '添加收货地址';
/**
* @return string
*/
public function href(): string
{
return admin_url("mall/addresses/create?user_id=".$this->row->id);
}
}