user()->can('products.transfer_stock'); } public function rules(): array { return [ 'quantity' => ['required', 'integer', 'min:1'], 'description' => ['nullable', 'string', 'max:500'], ]; } public function attributes(): array { return [ 'quantity' => 'Jumlah Transfer', 'description' => 'Keterangan', ]; } }