退换货

This commit is contained in:
TL 2022-08-16 19:11:31 +08:00
parent e49a778f2b
commit f6e02c9990
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ class RmaReasonController extends Controller
'rmaReasons' => $rmaReasons,
];
return view('admin::pages.rma_reasons.index', $data);
return view('admin::pages.rma_reasons.index1', $data);
}
public function store(Request $request): array

View File

@ -78,7 +78,7 @@ class RmaReasonRepo
*/
public static function list(array $data = [])
{
$builder = Rma::query();
$builder = RmaReason::query();
if (isset($data['name'])) {
$builder->where('name', 'like', "%{$data['name']}%");